From 8f5fe40e05e5dd19f659d23bdd9cfd4005d28267 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 7 Sep 2020 22:45:54 -0500 Subject: [PATCH] chore(tidy): use nullptr --- storm/Memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storm/Memory.cpp b/storm/Memory.cpp index aa623c6..59dcea0 100644 --- a/storm/Memory.cpp +++ b/storm/Memory.cpp @@ -61,6 +61,6 @@ void* SMemReAlloc(void* ptr, size_t bytes, const char* filename, int32_t linenum // TODO handle errors } - return NULL; + return nullptr; } }