X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fstructures%2Fbit_vector.h;h=933438226a04a7edb6c0c1d821219f6badf9274f;hb=56a8b71bcfe324f83044a12738004151ff2fc064;hp=55abae95fdd97666007d24926bc977d3a7c23dfc;hpb=3ea085ec301ed1399dfa1e9f3a240312dc95410b;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. */