Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r73168 - sandbox/conversion/libs/conversion_ext/test
From: vicente.botet_at_[hidden]
Date: 2011-07-17 06:52:27


Author: viboes
Date: 2011-07-17 06:52:23 EDT (Sun, 17 Jul 2011)
New Revision: 73168
URL: http://svn.boost.org/trac/boost/changeset/73168

Log:
conversion: fix is_move_constructible.cpp on compilers don't supporting rvalue references
Text files modified:
   sandbox/conversion/libs/conversion_ext/test/is_move_constructible.cpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/conversion/libs/conversion_ext/test/is_move_constructible.cpp
==============================================================================
--- sandbox/conversion/libs/conversion_ext/test/is_move_constructible.cpp (original)
+++ sandbox/conversion/libs/conversion_ext/test/is_move_constructible.cpp 2011-07-17 06:52:23 EDT (Sun, 17 Jul 2011)
@@ -80,7 +80,7 @@
   BOOST_STATIC_ASSERT(( boost::is_move_constructible<double>::value));
   BOOST_STATIC_ASSERT(( boost::is_move_constructible<int*>::value));
   BOOST_STATIC_ASSERT(( boost::is_move_constructible<const int*>::value));
-#if ! defined BOOST_NO_RVALUE_REFERENCES
+#if defined BOOST_CONVERSION_TT_IS_MOVE_CONSTRUCTIBLE_USES_RVALUE
   BOOST_STATIC_ASSERT(( boost::is_move_constructible<B>::value));
 #endif
 }


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