refactor(*): make type alias identifiers conform to the style for general type identifiers

This commit is contained in:
2024-12-16 19:34:47 +08:00
parent d2b6e0c669
commit 312cfe4097
54 changed files with 1738 additions and 1698 deletions

View File

@ -46,7 +46,7 @@ public:
};
FMemoryLeakChecker MemoryLeakChecker;
FMemoryLeakChecker GMemoryLeakChecker;
#endif
@ -80,7 +80,7 @@ void* Malloc(size_t Count, size_t Alignment)
check(Result != nullptr);
check_code({ MemoryLeakChecker.AddMemoryAllocationCount(); });
check_code({ GMemoryLeakChecker.AddMemoryAllocationCount(); });
return Result;
}
@ -139,7 +139,7 @@ void Free(void* Ptr)
}
# endif
check_code({ MemoryLeakChecker.ReleaseMemoryAllocationCount(); });
check_code({ GMemoryLeakChecker.ReleaseMemoryAllocationCount(); });
}
size_t QuantizeSize(size_t Count, size_t Alignment)