From c945d5ba7b5c6fc5d378869cafbce8058d63772b Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Sun, 7 Mar 2004 14:00:21 +0000 Subject: [PATCH] unnecessary "typename" causing gcc3.4 to fail removed [SVN r22450] --- 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 0c0eaa4..a804378 100644 --- a/include/boost/algorithm/string/detail/collection_traits.hpp +++ b/include/boost/algorithm/string/detail/collection_traits.hpp @@ -530,8 +530,8 @@ namespace boost { typedef value_type* iterator; typedef const value_type* const_iterator; - typedef BOOST_STRING_TYPENAME std::ptrdiff_t difference_type; - typedef BOOST_STRING_TYPENAME std::size_t size_type; + typedef std::ptrdiff_t difference_type; + typedef std::size_t size_type; typedef BOOST_STRING_TYPENAME ::boost::mpl::if_< ::boost::is_const,