Merged revision(s) 81900-81901 from trunk:

Replace use of BOOST_HAS_RVALUE_REFS with !BOOST_NO_CXX11_RVALUE_REFERENCES.
........
Replace use of BOOST_HAS_VARIADIC_TMPL with !BOOST_NO_CXX11_VARIADIC_TEMPLATES.
........


[SVN r81979]
This commit is contained in:
Peter Dimov
2012-12-15 20:20:20 +00:00
parent 6a218a5ef2
commit 5ba3312519
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 )