forked from boostorg/smart_ptr
		
	Merged revision(s) 81886,81887,81894,81905 from trunk:
Use BOOST_NO_CXX11_RVALUE_REFERENCES and BOOST_NO_CXX11_VARIADIC_TEMPLATES instead of the legacy macros. Rename identifiers of detail utility functions. ........ Two detail utility functions identifier renaming reverted ........ Remove -fno-deduce-init-list for certain tests in Jamfile.v2 ........ Correct call to init_list in make_shared and allocate_shared. Move g++ failing case into separate test to not mask other issues. ........ [SVN r81945]
This commit is contained in:
		@@ -21,22 +21,6 @@ private:
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
int main() {
 | 
			
		||||
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
 | 
			
		||||
    {
 | 
			
		||||
        boost::shared_ptr<int[]> a1 = boost::make_shared<int[]>({0, 1, 2, 3});
 | 
			
		||||
        BOOST_TEST(a1[0] == 0);
 | 
			
		||||
        BOOST_TEST(a1[1] == 1);
 | 
			
		||||
        BOOST_TEST(a1[2] == 2);
 | 
			
		||||
        BOOST_TEST(a1[3] == 3);
 | 
			
		||||
    }
 | 
			
		||||
    {
 | 
			
		||||
        boost::shared_ptr<int[][2]> a1 = boost::make_shared<int[][2]>({ {0, 1}, {2, 3} });
 | 
			
		||||
        BOOST_TEST(a1[0][0] == 0);
 | 
			
		||||
        BOOST_TEST(a1[0][1] == 1);
 | 
			
		||||
        BOOST_TEST(a1[1][0] == 2);
 | 
			
		||||
        BOOST_TEST(a1[1][1] == 3);
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#if !defined(BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX)
 | 
			
		||||
    {
 | 
			
		||||
        boost::shared_ptr<int[4]> a1 = boost::make_shared<int[4]>({0, 1, 2, 3});
 | 
			
		||||
@@ -80,7 +64,16 @@ int main() {
 | 
			
		||||
        BOOST_TEST(a1[1][1][0] == 2);
 | 
			
		||||
        BOOST_TEST(a1[1][1][1] == 3);
 | 
			
		||||
    }
 | 
			
		||||
#if defined(BOOST_HAS_RVALUE_REFS)
 | 
			
		||||
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
 | 
			
		||||
    {
 | 
			
		||||
        boost::shared_ptr<int[]> a1 = boost::make_shared<int[]>({0, 1, 2, 3});
 | 
			
		||||
        BOOST_TEST(a1[0] == 0);
 | 
			
		||||
        BOOST_TEST(a1[1] == 1);
 | 
			
		||||
        BOOST_TEST(a1[2] == 2);
 | 
			
		||||
        BOOST_TEST(a1[3] == 3);
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
 | 
			
		||||
    {
 | 
			
		||||
        boost::shared_ptr<type[]> a1 = boost::make_shared<type[]>(4, {1, 2});
 | 
			
		||||
        BOOST_TEST(a1[0].x == 1);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user