diff options
| author | Martin Ridgers <[email protected]> | 2021-12-14 14:58:02 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-12-15 09:54:53 +0100 |
| commit | 077a13395ac060900435a8b21a8dc8efebd84ae5 (patch) | |
| tree | 5507149aee6c52a4ff4dee1c8a2aaef360228091 /zencore/memory.cpp | |
| parent | Missing include (diff) | |
| download | zen-077a13395ac060900435a8b21a8dc8efebd84ae5.tar.xz zen-077a13395ac060900435a8b21a8dc8efebd84ae5.zip | |
Misplaced #ifdef statement that should be an #if
Diffstat (limited to 'zencore/memory.cpp')
| -rw-r--r-- | zencore/memory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/memory.cpp b/zencore/memory.cpp index 4b51ef9a2..7f194fa8c 100644 --- a/zencore/memory.cpp +++ b/zencore/memory.cpp @@ -5,7 +5,7 @@ #include <zencore/testing.h> #include <zencore/zencore.h> -#ifdef ZEN_PLATFORM_WINDOWS +#if ZEN_PLATFORM_WINDOWS # include <malloc.h> ZEN_THIRD_PARTY_INCLUDES_START # include <mimalloc.h> |