chore(tidy): use nullptr

This commit is contained in:
fallenoak 2020-09-07 22:45:54 -05:00
parent e5b4d32937
commit 8f5fe40e05
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -61,6 +61,6 @@ void* SMemReAlloc(void* ptr, size_t bytes, const char* filename, int32_t linenum
// TODO handle errors // TODO handle errors
} }
return NULL; return nullptr;
} }
} }