From 71ffcff092d2b3f33cc31d61a5ff583ff0d41cc6 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sun, 7 Mar 2004 14:33:56 +0000 Subject: [PATCH] fix namespace error when no partial specialization [SVN r22452] --- include/boost/algorithm/string/detail/collection_traits.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/algorithm/string/detail/collection_traits.hpp b/include/boost/algorithm/string/detail/collection_traits.hpp index a804378..e41bfa3 100644 --- a/include/boost/algorithm/string/detail/collection_traits.hpp +++ b/include/boost/algorithm/string/detail/collection_traits.hpp @@ -298,8 +298,8 @@ namespace boost { typedef BOOST_STRING_TYPENAME ::boost::mpl::fold< array_base_types, - ::boost::string_algo::detail::array_traits_void, - ::boost::string_algo::detail::array_traits_select >::type type; + ::boost::algorithm::detail::array_traits_void, + ::boost::algorithm::detail::array_traits_select >::type type; }; template< typename T >