diff options
author | crupest <crupest@outlook.com> | 2022-01-12 02:30:25 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-12 02:30:25 +0800 |
commit | 882d843083895f4905571dc273e801ee18fd5984 (patch) | |
tree | 163890b8ccb64b8eff28af558ac803affe392488 /src/win/HeapDebug.cpp | |
parent | 01f98ce88950cdb729f5db58bf26f2fffa1c326c (diff) | |
download | cru-882d843083895f4905571dc273e801ee18fd5984.tar.gz cru-882d843083895f4905571dc273e801ee18fd5984.tar.bz2 cru-882d843083895f4905571dc273e801ee18fd5984.zip |
...
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 |