diff options
Diffstat (limited to 'cpp/test/Freeze/complex/Parser.cpp')
-rw-r--r-- | cpp/test/Freeze/complex/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Freeze/complex/Parser.cpp b/cpp/test/Freeze/complex/Parser.cpp index 8d1754cb503..3bedb944b4f 100644 --- a/cpp/test/Freeze/complex/Parser.cpp +++ b/cpp/test/Freeze/complex/Parser.cpp @@ -69,7 +69,7 @@ Parser::getInput(char* buf, int& result, int maxSize) { if(!_buf.empty()) { -#if defined(_MSC_VER) && !defined(_STLP_MSVC) +#if defined(_MSC_VER) && _MSC_VER < 1500 && !defined(_STLP_MSVC) // COMPILERBUG: Stupid Visual C++ defines min and max as macros result = _MIN(maxSize, static_cast<int>(_buf.length())); #else |