X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Ftests_structures%2Fbogon.cpp;h=6ea707183740c7058d6093b2fe5f9ce5feb9575c;hb=c43b7a2003e8aa28c8da6428239f34e7f404315c;hp=4bd881233839af20ff9c1d21d1e18349e0245bcd;hpb=3ea085ec301ed1399dfa1e9f3a240312dc95410b;p=feisty_meow.git diff --git a/nucleus/library/tests_structures/bogon.cpp b/nucleus/library/tests_structures/bogon.cpp index 4bd88123..6ea70718 100644 --- a/nucleus/library/tests_structures/bogon.cpp +++ b/nucleus/library/tests_structures/bogon.cpp @@ -23,7 +23,7 @@ using namespace basis; using namespace structures; -bogon::bogon(abyte *to_copy) : my_held(NIL) +bogon::bogon(abyte *to_copy) : my_held(NULL_POINTER) { if (to_copy) { astring t((char *)to_copy); @@ -34,7 +34,7 @@ bogon::bogon(abyte *to_copy) : my_held(NIL) } } -bogon::bogon(const bogon &to_copy) : my_held(NIL) { operator = (to_copy); } +bogon::bogon(const bogon &to_copy) : my_held(NULL_POINTER) { operator = (to_copy); } bogon &bogon::operator = (const bogon &to_copy) { if (this == &to_copy) return *this;