Replace use of BOOST_HAS_RVALUE_REFS with !BOOST_NO_CXX11_RVALUE_REFERENCES.

[SVN r81900]
This commit is contained in:
Peter Dimov
2012-12-13 16:48:57 +00:00
parent bbf0245248
commit 647f67aabf
14 changed files with 27 additions and 27 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ public:
// generated copy constructor, destructor are fine...
#if defined( BOOST_HAS_RVALUE_REFS )
#if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
// ... except in C++0x, move disables the implicit copy
@@ -145,7 +145,7 @@ public:
#endif
#if defined( BOOST_HAS_RVALUE_REFS )
#if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
shared_array & operator=( shared_array && r ) BOOST_NOEXCEPT
{