From 79b229adcd9fb708f9415682abe57db38de58fa6 Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Sat, 17 Nov 2012 22:20:32 +0000 Subject: [PATCH] Cosmetic changes in make_shared_array.hpp and allocate_shared_array.hpp [SVN r81407] --- include/boost/smart_ptr/allocate_shared_array.hpp | 4 ++-- include/boost/smart_ptr/make_shared_array.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/smart_ptr/allocate_shared_array.hpp b/include/boost/smart_ptr/allocate_shared_array.hpp index 3c45b1c..cc894e7 100644 --- a/include/boost/smart_ptr/allocate_shared_array.hpp +++ b/include/boost/smart_ptr/allocate_shared_array.hpp @@ -52,7 +52,7 @@ namespace boost { detail::array_deleter* d2; p1 = reinterpret_cast(p2); d2 = get_deleter >(s1); - d2->construct(p2, n1, boost::detail::sp_forward(args)...); + d2->construct(p2, n1, detail::sp_forward(args)...); return shared_ptr(s1, p1); } template @@ -69,7 +69,7 @@ namespace boost { detail::array_deleter* d2; p1 = reinterpret_cast(p2); d2 = get_deleter >(s1); - d2->construct(p2, n1, boost::detail::sp_forward(args)...); + d2->construct(p2, n1, detail::sp_forward(args)...); return shared_ptr(s1, p1); } #endif diff --git a/include/boost/smart_ptr/make_shared_array.hpp b/include/boost/smart_ptr/make_shared_array.hpp index 110ee34..8422150 100644 --- a/include/boost/smart_ptr/make_shared_array.hpp +++ b/include/boost/smart_ptr/make_shared_array.hpp @@ -52,7 +52,7 @@ namespace boost { detail::array_deleter* d2; p1 = reinterpret_cast(p2); d2 = get_deleter >(s1); - d2->construct(p2, n1, boost::detail::sp_forward(args)...); + d2->construct(p2, n1, detail::sp_forward(args)...); return shared_ptr(s1, p1); } template @@ -69,7 +69,7 @@ namespace boost { detail::array_deleter* d2; p1 = reinterpret_cast(p2); d2 = get_deleter >(s1); - d2->construct(p2, n1, boost::detail::sp_forward(args)...); + d2->construct(p2, n1, detail::sp_forward(args)...); return shared_ptr(s1, p1); } #endif