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
+3 -3
View File
@@ -12,14 +12,14 @@
#include <boost/make_shared.hpp>
#include <boost/shared_ptr.hpp>
#if !defined( BOOST_HAS_RVALUE_REFS )
#if defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
int main()
{
return 0;
}
#else // BOOST_HAS_RVALUE_REFS
#else // !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
class myarg
{
@@ -95,4 +95,4 @@ int main()
return boost::report_errors();
}
#endif // BOOST_HAS_RVALUE_REFS
#endif // !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )