diff --git a/include/boost/smart_ptr/make_shared.hpp b/include/boost/smart_ptr/make_shared.hpp index cd8f662..601edd3 100644 --- a/include/boost/smart_ptr/make_shared.hpp +++ b/include/boost/smart_ptr/make_shared.hpp @@ -117,6 +117,10 @@ template< class T > struct sp_if_not_array< T[] > { }; +template< class T, std::size_t N > struct sp_if_not_array< T[N] > +{ +}; + #endif } // namespace detail