X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fstructures%2Fbit_vector.h;h=933438226a04a7edb6c0c1d821219f6badf9274f;hb=2f10609a685f0512cee89890d2e365a8f10c8054;hp=55abae95fdd97666007d24926bc977d3a7c23dfc;hpb=457b128b77b5b4a0b7dd3094de543de2ce1477ad;p=feisty_meow.git diff --git a/nucleus/library/structures/bit_vector.h b/nucleus/library/structures/bit_vector.h index 55abae95..93343822 100644 --- a/nucleus/library/structures/bit_vector.h +++ b/nucleus/library/structures/bit_vector.h @@ -28,9 +28,9 @@ public: bit_vector(); //!< creates a zero length bit_vector. - bit_vector(int size, const basis::abyte *initial = NIL); + bit_vector(int size, const basis::abyte *initial = NULL_POINTER); //!< creates a bit_vector able to store "size" bits. - /*!< if initial is NIL, the vector is initialized to zero. otherwise, the + /*!< if initial is NULL_POINTER, the vector is initialized to zero. otherwise, the bits are copied from "initial". "initial" must be large enough for the copying to succeed. */