diff --git a/wrap/tests/expected/@Point2/vectorConfusion.cpp b/wrap/tests/expected/@Point2/vectorConfusion.cpp index bb6f02927..d992d1d94 100644 --- a/wrap/tests/expected/@Point2/vectorConfusion.cpp +++ b/wrap/tests/expected/@Point2/vectorConfusion.cpp @@ -6,5 +6,5 @@ void mexFunction(int nargout, mxArray *out[], int nargin, const mxArray *in[]) checkArguments("vectorConfusion",nargout,nargin-1,0); boost::shared_ptr self = unwrap_shared_ptr< Point2 >(in[0],"Point2"); VectorNotEigen result = self->vectorConfusion(); - out[0] = wrap_shared_ptr(make_shared< VectorNotEigen >(result),"VectorNotEigen"); + out[0] = wrap_shared_ptr(boost::make_shared< VectorNotEigen >(result),"VectorNotEigen"); } diff --git a/wrap/tests/expected/@Test/create_MixedPtrs.cpp b/wrap/tests/expected/@Test/create_MixedPtrs.cpp index 9c685d6cf..81bcdc5d8 100644 --- a/wrap/tests/expected/@Test/create_MixedPtrs.cpp +++ b/wrap/tests/expected/@Test/create_MixedPtrs.cpp @@ -7,6 +7,6 @@ void mexFunction(int nargout, mxArray *out[], int nargin, const mxArray *in[]) checkArguments("create_MixedPtrs",nargout,nargin-1,0); boost::shared_ptr self = unwrap_shared_ptr< Test >(in[0],"Test"); pair< Test, boost::shared_ptr > result = self->create_MixedPtrs(); - out[0] = wrap_shared_ptr(make_shared< Test >(result.first),"Test"); + out[0] = wrap_shared_ptr(boost::make_shared< Test >(result.first),"Test"); out[1] = wrap_shared_ptr(result.second,"Test"); } diff --git a/wrap/tests/expected/@Test/return_Test.cpp b/wrap/tests/expected/@Test/return_Test.cpp index 458e0c74d..63e9f5a3b 100644 --- a/wrap/tests/expected/@Test/return_Test.cpp +++ b/wrap/tests/expected/@Test/return_Test.cpp @@ -8,5 +8,5 @@ void mexFunction(int nargout, mxArray *out[], int nargin, const mxArray *in[]) boost::shared_ptr self = unwrap_shared_ptr< Test >(in[0],"Test"); boost::shared_ptr value = unwrap_shared_ptr< Test >(in[1], "Test"); Test result = self->return_Test(value); - out[0] = wrap_shared_ptr(make_shared< Test >(result),"Test"); + out[0] = wrap_shared_ptr(boost::make_shared< Test >(result),"Test"); } diff --git a/wrap/tests/expected/Point3_StaticFunctionRet.cpp b/wrap/tests/expected/Point3_StaticFunctionRet.cpp index 062194bd5..652d8713e 100644 --- a/wrap/tests/expected/Point3_StaticFunctionRet.cpp +++ b/wrap/tests/expected/Point3_StaticFunctionRet.cpp @@ -7,5 +7,5 @@ void mexFunction(int nargout, mxArray *out[], int nargin, const mxArray *in[]) checkArguments("Point3_StaticFunctionRet",nargout,nargin,1); double z = unwrap< double >(in[0]); Point3 result = Point3::StaticFunctionRet(z); - out[0] = wrap_shared_ptr(make_shared< Point3 >(result),"Point3"); + out[0] = wrap_shared_ptr(boost::make_shared< Point3 >(result),"Point3"); } diff --git a/wrap/tests/expected_namespaces/@ns2ClassA/nsReturn.cpp b/wrap/tests/expected_namespaces/@ns2ClassA/nsReturn.cpp index 826e30c8c..dbeb42f60 100644 --- a/wrap/tests/expected_namespaces/@ns2ClassA/nsReturn.cpp +++ b/wrap/tests/expected_namespaces/@ns2ClassA/nsReturn.cpp @@ -8,5 +8,5 @@ void mexFunction(int nargout, mxArray *out[], int nargin, const mxArray *in[]) boost::shared_ptr self = unwrap_shared_ptr< ns2::ClassA >(in[0],"ns2ClassA"); double q = unwrap< double >(in[1]); ns2::ns3::ClassB result = self->nsReturn(q); - out[0] = wrap_shared_ptr(make_shared< ns2::ns3::ClassB >(result),"ns2ns3ClassB"); + out[0] = wrap_shared_ptr(boost::make_shared< ns2::ns3::ClassB >(result),"ns2ns3ClassB"); }