dont use NULL macro
This commit is contained in:
parent
9a9262f6d0
commit
4c66704830
16 changed files with 52 additions and 52 deletions
|
|
@ -6,13 +6,13 @@
|
|||
using namespace obj;
|
||||
|
||||
struct ObjectType MethodObject::TypeData = {
|
||||
.base = NULL,
|
||||
.base = nullptr,
|
||||
.constructor = (object_constructor) MethodObject::constructor,
|
||||
.destructor = (object_destructor) MethodObject::destructor,
|
||||
.copy = (object_copy) MethodObject::copy,
|
||||
.size = sizeof(MethodObject),
|
||||
.name = "method",
|
||||
.convesions = NULL,
|
||||
.convesions = nullptr,
|
||||
.save_size = (object_save_size) MethodObject::save_size,
|
||||
.save = (object_save) MethodObject::save,
|
||||
.load = (object_load) MethodObject::load,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue