From 92ac33e923f112a5395e1fa0a52fc14786f80612 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Mon, 10 Aug 2015 13:54:19 +0200 Subject: Checked LeakFinder in MSVC2015, enabled support for it. --- src/LeakFinder.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/LeakFinder.cpp') 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 -- cgit v1.2.3