From 70190b3aa205858fb7d0c978d60185efb2ca315d Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 15 Jan 2014 00:04:13 +0000 Subject: [PATCH] Disable test for compilers that emulate old Visual C++. --- test/unordered/unnecessary_copy_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unordered/unnecessary_copy_tests.cpp b/test/unordered/unnecessary_copy_tests.cpp index 161f943b..31f7e8b9 100644 --- a/test/unordered/unnecessary_copy_tests.cpp +++ b/test/unordered/unnecessary_copy_tests.cpp @@ -442,7 +442,7 @@ namespace unnecessary_copy_tests COPY_COUNT(2); MOVE_COUNT(source_pair_cost); #if !(defined(__GNUC__) && __cplusplus < 199900L) && \ - !(defined(BOOST_MSVC) && BOOST_MSVC < 1600) + !(defined(_MSC_VER) && _MSC_VER < 1600) count_copies part; reset(); std::pair a_ref(part, part);