mirror of
				https://github.com/boostorg/smart_ptr.git
				synced 2025-11-04 01:31:51 +01:00 
			
		
		
		
	Use BOOST_NO_CXX11_RVALUE_REFERENCES and BOOST_NO_CXX11_VARIADIC_TEMPLATES instead of the legacy macros. Rename identifiers of detail utility functions.
[SVN r81886]
This commit is contained in:
		@@ -36,7 +36,7 @@ private:
 | 
			
		||||
int type::instances = 0;
 | 
			
		||||
 | 
			
		||||
int main() {
 | 
			
		||||
#if defined(BOOST_HAS_VARIADIC_TMPL) && defined(BOOST_HAS_RVALUE_REFS)
 | 
			
		||||
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
 | 
			
		||||
    BOOST_TEST(type::instances == 0);
 | 
			
		||||
    {
 | 
			
		||||
        boost::shared_ptr<type[]> a1 = boost::make_shared<type[]>(2, 1, 2, 3, 4, 5, 6, 7, 8, 9);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user