dont use NULL macro

This commit is contained in:
IlyaShurupov 2024-03-23 12:16:44 +03:00 committed by Ilya Shurupov
parent 9d01ba2c8a
commit e78885d452
16 changed files with 52 additions and 52 deletions

View file

@ -57,9 +57,9 @@ struct ObjectTypeAriphmetics FloatObject::TypeAriphm = {
};
struct obj::ObjectType obj::FloatObject::TypeData = {
.base = NULL,
.base = nullptr,
.constructor = (object_constructor) FloatObject::constructor,
.destructor = NULL,
.destructor = nullptr,
.copy = (object_copy) FloatObject::copy,
.size = sizeof(FloatObject),
.name = "float",