diff options
Diffstat (limited to 'src/misc/vec/vec.h')
-rw-r--r-- | src/misc/vec/vec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/vec/vec.h b/src/misc/vec/vec.h index 03de79f1..4c19b5ee 100644 --- a/src/misc/vec/vec.h +++ b/src/misc/vec/vec.h @@ -50,7 +50,7 @@ typedef long long sint64; // this include should be the first one in the list // it is used to catch memory leaks on Windows -#ifdef ABC_CHECK_LEAKS +#if defined(_DEBUG) && defined(_MSC_VER) && (_MSC_VER <= 1200) // 1200 = MSVC 6.0 #include "leaks.h" #endif |