X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Ftests_structures%2Fbogon.cpp;fp=nucleus%2Flibrary%2Ftests_structures%2Fbogon.cpp;h=6ea707183740c7058d6093b2fe5f9ce5feb9575c;hb=7b39f7e279005c8466ef508220a532ce2aa4abf8;hp=4bd881233839af20ff9c1d21d1e18349e0245bcd;hpb=3fbd372b35b15a19fb171d5ae34294ff7b1e6485;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;