From c6461214263a9d5a34442d6fdec390478b780715 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sat, 3 Aug 2013 06:09:35 +0000 Subject: [PATCH] Test is_copy_constructible trait on C++03/98 with Boost.Move emulation of noncopyable-movable type (refs #8802, refs #8842) [SVN r85193] --- test/is_copy_constructible_test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/is_copy_constructible_test.cpp b/test/is_copy_constructible_test.cpp index b8e3c46..6829092 100644 --- a/test/is_copy_constructible_test.cpp +++ b/test/is_copy_constructible_test.cpp @@ -90,9 +90,7 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, fals BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, false); // Requires some basic support from Boost.Move in C++03 -#ifndef BOOST_NO_CXX11_DELETED_FUNCTIONS // TODO: remove when Boost.Move will be patched BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, false); -#endif BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, true);