mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 19:46:00 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -458,7 +458,7 @@ void SparseDataStorage::tick() {
|
||||
|
||||
// printf("Free queue: %d,
|
||||
//%d\n",deleteQueue[freeIndex].GetEntryCount(),deleteQueue[freeIndex].GetAllocated());
|
||||
unsigned char* toFree = NULL;
|
||||
unsigned char* toFree = nullptr;
|
||||
do {
|
||||
toFree = deleteQueue[freeIndex].Pop();
|
||||
// if( toFree ) printf("Deleting 0x%x\n", toFree);
|
||||
|
||||
Reference in New Issue
Block a user