diff options
Diffstat (limited to 'src/win/HeapDebug.cpp')
-rw-r--r-- | src/win/HeapDebug.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/win/HeapDebug.cpp b/src/win/HeapDebug.cpp index 6ec1ffcc..b1b9fe1a 100644 --- a/src/win/HeapDebug.cpp +++ b/src/win/HeapDebug.cpp @@ -1,11 +1,9 @@ #include "cru/win/WinPreConfig.hpp" -#include "cru/platform/HeapDebug.hpp" - #include <crtdbg.h> namespace cru::platform { void SetupHeapDebug() { _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF); } -} +} // namespace cru::platform |