Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85193 - trunk/libs/type_traits/test
From: antoshkka_at_[hidden]
Date: 2013-08-03 02:09:35


Author: apolukhin
Date: 2013-08-03 02:09:35 EDT (Sat, 03 Aug 2013)
New Revision: 85193
URL: http://svn.boost.org/trac/boost/changeset/85193

Log:
Test is_copy_constructible trait on C++03/98 with Boost.Move emulation of noncopyable-movable type (refs #8802, refs #8842)

Text files modified:
   trunk/libs/type_traits/test/is_copy_constructible_test.cpp | 2 --
   1 files changed, 0 insertions(+), 2 deletions(-)

Modified: trunk/libs/type_traits/test/is_copy_constructible_test.cpp
==============================================================================
--- trunk/libs/type_traits/test/is_copy_constructible_test.cpp Fri Aug 2 13:09:29 2013 (r85192)
+++ trunk/libs/type_traits/test/is_copy_constructible_test.cpp 2013-08-03 02:09:35 EDT (Sat, 03 Aug 2013) (r85193)
@@ -90,9 +90,7 @@
 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<has_not4>::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<has_not5>::value, false);
-#endif
 
 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<bool>::value, true);
 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<bool const>::value, true);


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk