From df544871d79d72a765078c739940919ad7fd5cf4 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 7 Nov 2012 23:41:52 +0000 Subject: [PATCH] Add missing semicolon. [SVN r81238] --- include/boost/smart_ptr/allocate_shared_array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/smart_ptr/allocate_shared_array.hpp b/include/boost/smart_ptr/allocate_shared_array.hpp index 04c8f2b..086cd05 100644 --- a/include/boost/smart_ptr/allocate_shared_array.hpp +++ b/include/boost/smart_ptr/allocate_shared_array.hpp @@ -49,7 +49,7 @@ namespace boost { p1 = reinterpret_cast(p2); d2 = get_deleter >(s1); d2->construct(p2, n1, std::forward(args)...); - return shared_ptr(s1, p1) + return shared_ptr(s1, p1); } #endif }