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

View File

@@ -12,7 +12,7 @@
#include <boost/detail/lightweight_test.hpp>
#include <utility>
#if defined( BOOST_HAS_RVALUE_REFS )
#if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
struct X
{
@@ -112,7 +112,7 @@ int main()
return boost::report_errors();
}
#else // !defined( BOOST_HAS_RVALUE_REFS )
#else // defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
int main()
{