summaryrefslogtreecommitdiffstats
path: root/src/LeakFinder.cpp
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2015-08-10 21:12:06 +0200
committerworktycho <work.tycho@gmail.com>2015-08-10 21:12:06 +0200
commit63b65c19eff7c3d8cd8316f5653fef2c396a3af6 (patch)
treea0263761bcafd5d852c947ff1df91ed639b206d7 /src/LeakFinder.cpp
parentMerge pull request #2421 from cuberite/StackWalkerWarningIgnore (diff)
parentChecked LeakFinder in MSVC2015, enabled support for it. (diff)
downloadcuberite-63b65c19eff7c3d8cd8316f5653fef2c396a3af6.tar
cuberite-63b65c19eff7c3d8cd8316f5653fef2c396a3af6.tar.gz
cuberite-63b65c19eff7c3d8cd8316f5653fef2c396a3af6.tar.bz2
cuberite-63b65c19eff7c3d8cd8316f5653fef2c396a3af6.tar.lz
cuberite-63b65c19eff7c3d8cd8316f5653fef2c396a3af6.tar.xz
cuberite-63b65c19eff7c3d8cd8316f5653fef2c396a3af6.tar.zst
cuberite-63b65c19eff7c3d8cd8316f5653fef2c396a3af6.zip
Diffstat (limited to 'src/LeakFinder.cpp')
-rw-r--r--src/LeakFinder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LeakFinder.cpp b/src/LeakFinder.cpp
index 42a5afe56..2e352af2d 100644
--- a/src/LeakFinder.cpp
+++ b/src/LeakFinder.cpp
@@ -103,9 +103,9 @@
#include "LeakFinder.h"
-// Currently only tested with MS VC++ 5 to 10
-#if (_MSC_VER < 1100) || (_MSC_VER > 1800)
-#error Only MS VC++ 5/6/7/7.1/8/9/10/11/12 supported. Check if the '_CrtMemBlockHeader' has not changed with this compiler!
+// Currently only tested with MS VC++ 5 to 2015
+#if (_MSC_VER < 1100) || (_MSC_VER > 1900)
+ #error Only MS VC++ 5/6/7/7.1/8/9/10/11/12 supported. Check if the '_CrtMemBlockHeader' has not changed with this compiler!
#endif