Index: boost/algorithm/string/detail/find_format.hpp =================================================================== --- boost/algorithm/string/detail/find_format.hpp (revision 80442) +++ boost/algorithm/string/detail/find_format.hpp (working copy) @@ -118,11 +118,11 @@ InputT Output; // Copy the beginning of the sequence - insert( Output, ::boost::end(Output), ::boost::begin(Input), M.begin() ); + ::boost::algorithm::detail::insert( Output, ::boost::end(Output), ::boost::begin(Input), M.begin() ); // Copy formated result - insert( Output, ::boost::end(Output), M.format_result() ); + ::boost::algorithm::detail::insert( Output, ::boost::end(Output), M.format_result() ); // Copy the rest of the sequence - insert( Output, ::boost::end(Output), M.end(), ::boost::end(Input) ); + ::boost::algorithm::detail::insert( Output, ::boost::end(Output), M.end(), ::boost::end(Input) ); return Output; } Index: boost/algorithm/string/detail/find_format_all.hpp =================================================================== --- boost/algorithm/string/detail/find_format_all.hpp (revision 80442) +++ boost/algorithm/string/detail/find_format_all.hpp (working copy) @@ -134,9 +134,9 @@ while( M ) { // Copy the beginning of the sequence - insert( Output, ::boost::end(Output), LastMatch, M.begin() ); + ::boost::algorithm::detail::insert( Output, ::boost::end(Output), LastMatch, M.begin() ); // Copy formated result - insert( Output, ::boost::end(Output), M.format_result() ); + ::boost::algorithm::detail::insert( Output, ::boost::end(Output), M.format_result() ); // Proceed to the next match LastMatch=M.end();