X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=vector%2FVector.h;h=0e369d7459bf625049cc63a196ad4a93288f19e7;hb=a378b285ea3fd08ac7c19137401d261d8027a7ee;hp=7c9286ce3d4e14e89dae6798602d308c65ce7c38;hpb=6fcd4ffc18696dbf4c11be32837a2035ea5ee92f;p=rrq%2Frrqmisc.git diff --git a/vector/Vector.h b/vector/Vector.h index 7c9286c..0e369d7 100644 --- a/vector/Vector.h +++ b/vector/Vector.h @@ -30,7 +30,7 @@ typedef void* VectorPage[]; /** * \brief The implementation variants. * - * - byte_index_levels (0) has 8-bit indexing parts and index pages + * - Byte_index_levels (0) has 8-bit indexing parts and index pages * with 256 pointers, * * - Nibble_index_levels (1) has 4-bit indexing parts and index pages @@ -39,7 +39,7 @@ typedef void* VectorPage[]; * - BitPair_index_levels (2) has 2-bit indexing parts and index pages * with 4 pointers, * - * - single_index_level (3) has a single page that is sized as the + * - Single_index_level (3) has a single page that is sized as the * Vector. * * The first three variants are managed by adding/removing full pages @@ -52,10 +52,10 @@ typedef void* VectorPage[]; * \related Vector */ enum VectorVariant { - byte_index_levels = 0, + Byte_index_levels = 0, Nibble_index_levels = 1, BitPair_index_levels = 2, - single_index_level = 3 + Single_index_level = 3 }; /**