Checked LeakFinder in MSVC2015, enabled support for it.

This commit is contained in:
Mattes D
2015-08-10 13:54:19 +02:00
parent db09c733ea
commit 92ac33e923
2 changed files with 7 additions and 6 deletions
+3 -3
View File
@@ -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