From 556adc1de1c97b56ea1a16a52e03cff470dd62e1 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 30 Sep 2012 08:29:26 +0000 Subject: [PATCH] Unordered: Fix the Visual C++ 11 version number. [SVN r80768] --- 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 13bea90e..143262aa 100644 --- a/test/unordered/unnecessary_copy_tests.cpp +++ b/test/unordered/unnecessary_copy_tests.cpp @@ -374,7 +374,7 @@ namespace unnecessary_copy_tests // COPY_COUNT(1) would be okay here. reset(); x.emplace(); -# if BOOST_WORKAROUND(BOOST_MSVC, >= 1800) +# if BOOST_WORKAROUND(BOOST_MSVC, >= 1700) // This is a little odd, Visual C++ 11 seems to move the pair, which // results in one copy (for the const key) and one move (for the // non-const mapped value). Since 'emplace(boost::move(a))' (see below)