Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / nucleus / library / structures / bit_vector.h
index 55abae95fdd97666007d24926bc977d3a7c23dfc..933438226a04a7edb6c0c1d821219f6badf9274f 100644 (file)
@@ -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. */