Replace use of BOOST_HAS_VARIADIC_TMPL with !BOOST_NO_CXX11_VARIADIC_TEMPLATES.

[SVN r81901]
This commit is contained in:
Peter Dimov
2012-12-13 16:57:55 +00:00
parent 647f67aabf
commit 1c070b3a32
4 changed files with 4 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ int main()
BOOST_TEST( X::instances == 0 );
}
#if defined( BOOST_HAS_VARIADIC_TMPL ) && !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
#if !defined( BOOST_NO_CXX11_VARIADIC_TEMPLATES ) && !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
{
boost::shared_ptr< X[] > px = boost::make_shared< X[] >( 2, 1 );