|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r81832 - in branches/release/boost/algorithm/string: . detail
From: marshall_at_[hidden]
Date: 2012-12-10 14:23:54
Author: marshall
Date: 2012-12-10 14:23:54 EST (Mon, 10 Dec 2012)
New Revision: 81832
URL: http://svn.boost.org/trac/boost/changeset/81832
Log:
Merge from trunk; Fixes #7346
Properties modified:
branches/release/boost/algorithm/string/ (props changed)
branches/release/boost/algorithm/string/detail/case_conv.hpp (props changed)
branches/release/boost/algorithm/string/detail/classification.hpp (props changed)
branches/release/boost/algorithm/string/find.hpp (props changed)
Text files modified:
branches/release/boost/algorithm/string/detail/find_format.hpp | 6 +++---
branches/release/boost/algorithm/string/detail/find_format_all.hpp | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
Modified: branches/release/boost/algorithm/string/detail/find_format.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/find_format.hpp (original)
+++ branches/release/boost/algorithm/string/detail/find_format.hpp 2012-12-10 14:23:54 EST (Mon, 10 Dec 2012)
@@ -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;
}
Modified: branches/release/boost/algorithm/string/detail/find_format_all.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/find_format_all.hpp (original)
+++ branches/release/boost/algorithm/string/detail/find_format_all.hpp 2012-12-10 14:23:54 EST (Mon, 10 Dec 2012)
@@ -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();
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk