$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r85804 - in branches/release/boost/algorithm/string: . detail
From: andrey.semashev_at_[hidden]
Date: 2013-09-20 13:40:42
Author: andysem
Date: 2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)
New Revision: 85804
URL: http://svn.boost.org/trac/boost/changeset/85804
Log:
Merged changes from trunk.
Properties modified: 
   branches/release/boost/algorithm/string/   (props changed)
   branches/release/boost/algorithm/string/detail/finder.hpp   (contents, props changed)
   branches/release/boost/algorithm/string/find.hpp   (contents, props changed)
   branches/release/boost/algorithm/string/find_iterator.hpp   (contents, props changed)
Text files modified: 
   branches/release/boost/algorithm/string/concept.hpp                  |     2 +-                                      
   branches/release/boost/algorithm/string/detail/find_format.hpp       |     2 +-                                      
   branches/release/boost/algorithm/string/detail/find_format_all.hpp   |     2 +-                                      
   branches/release/boost/algorithm/string/detail/find_format_store.hpp |     2 +-                                      
   branches/release/boost/algorithm/string/detail/find_iterator.hpp     |     2 +-                                      
   branches/release/boost/algorithm/string/detail/finder.hpp            |     2 +-                                      
   branches/release/boost/algorithm/string/detail/finder_regex.hpp      |     2 +-                                      
   branches/release/boost/algorithm/string/detail/formatter.hpp         |     2 +-                                      
   branches/release/boost/algorithm/string/detail/util.hpp              |     2 +-                                      
   branches/release/boost/algorithm/string/erase.hpp                    |     2 +-                                      
   branches/release/boost/algorithm/string/find.hpp                     |     2 +-                                      
   branches/release/boost/algorithm/string/find_format.hpp              |     2 +-                                      
   branches/release/boost/algorithm/string/find_iterator.hpp            |     2 +-                                      
   branches/release/boost/algorithm/string/finder.hpp                   |     2 +-                                      
   branches/release/boost/algorithm/string/formatter.hpp                |     2 +-                                      
   branches/release/boost/algorithm/string/iter_find.hpp                |     2 +-                                      
   branches/release/boost/algorithm/string/predicate.hpp                |     2 +-                                      
   branches/release/boost/algorithm/string/regex.hpp                    |     2 +-                                      
   branches/release/boost/algorithm/string/replace.hpp                  |     2 +-                                      
   branches/release/boost/algorithm/string/trim.hpp                     |     2 +-                                      
   20 files changed, 20 insertions(+), 20 deletions(-)
Modified: branches/release/boost/algorithm/string/concept.hpp
==============================================================================
--- branches/release/boost/algorithm/string/concept.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/concept.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -12,7 +12,7 @@
 #define BOOST_STRING_CONCEPT_HPP
 
 #include <boost/concept_check.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 
Modified: branches/release/boost/algorithm/string/detail/find_format.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/find_format.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/find_format.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -12,7 +12,7 @@
 #define BOOST_STRING_FIND_FORMAT_DETAIL_HPP
 
 #include <boost/algorithm/string/config.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/const_iterator.hpp>
 #include <boost/range/iterator.hpp>
 #include <boost/algorithm/string/detail/find_format_store.hpp>
Modified: branches/release/boost/algorithm/string/detail/find_format_all.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/find_format_all.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/find_format_all.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -12,7 +12,7 @@
 #define BOOST_STRING_FIND_FORMAT_ALL_DETAIL_HPP
 
 #include <boost/algorithm/string/config.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/const_iterator.hpp>
 #include <boost/range/value_type.hpp>
 #include <boost/algorithm/string/detail/find_format_store.hpp>
Modified: branches/release/boost/algorithm/string/detail/find_format_store.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/find_format_store.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/find_format_store.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -12,7 +12,7 @@
 #define BOOST_STRING_FIND_FORMAT_STORE_DETAIL_HPP
 
 #include <boost/algorithm/string/config.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 
 namespace boost {
     namespace algorithm {
Modified: branches/release/boost/algorithm/string/detail/find_iterator.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/find_iterator.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/find_iterator.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -12,7 +12,7 @@
 #define BOOST_STRING_FIND_ITERATOR_DETAIL_HPP
 
 #include <boost/algorithm/string/config.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/iterator/iterator_facade.hpp>
 #include <boost/iterator/iterator_categories.hpp>
 #include <boost/function.hpp>
Modified: branches/release/boost/algorithm/string/detail/finder.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/finder.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/finder.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -15,7 +15,7 @@
 #include <boost/algorithm/string/constants.hpp>
 #include <boost/detail/iterator.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/empty.hpp>
Modified: branches/release/boost/algorithm/string/detail/finder_regex.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/finder_regex.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/finder_regex.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -14,7 +14,7 @@
 #include <boost/algorithm/string/config.hpp>
 #include <boost/regex.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 
Modified: branches/release/boost/algorithm/string/detail/formatter.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/formatter.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/formatter.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -12,7 +12,7 @@
 #define BOOST_STRING_FORMATTER_DETAIL_HPP
 
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/const_iterator.hpp>
Modified: branches/release/boost/algorithm/string/detail/util.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/util.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/detail/util.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -13,7 +13,7 @@
 
 #include <boost/algorithm/string/config.hpp>
 #include <functional>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 
 namespace boost {
     namespace algorithm {
Modified: branches/release/boost/algorithm/string/erase.hpp
==============================================================================
--- branches/release/boost/algorithm/string/erase.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/erase.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -13,7 +13,7 @@
 
 #include <boost/algorithm/string/config.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/iterator.hpp>
Modified: branches/release/boost/algorithm/string/find.hpp
==============================================================================
--- branches/release/boost/algorithm/string/find.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/find.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -13,7 +13,7 @@
 
 #include <boost/algorithm/string/config.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/iterator.hpp>
Modified: branches/release/boost/algorithm/string/find_format.hpp
==============================================================================
--- branches/release/boost/algorithm/string/find_format.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/find_format.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -13,7 +13,7 @@
 
 #include <deque>
 #include <boost/detail/iterator.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/const_iterator.hpp>
Modified: branches/release/boost/algorithm/string/find_iterator.hpp
==============================================================================
--- branches/release/boost/algorithm/string/find_iterator.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/find_iterator.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -15,7 +15,7 @@
 #include <boost/iterator/iterator_facade.hpp>
 #include <boost/iterator/iterator_categories.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/iterator.hpp>
Modified: branches/release/boost/algorithm/string/finder.hpp
==============================================================================
--- branches/release/boost/algorithm/string/finder.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/finder.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -13,7 +13,7 @@
 
 #include <boost/algorithm/string/config.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/iterator.hpp>
Modified: branches/release/boost/algorithm/string/formatter.hpp
==============================================================================
--- branches/release/boost/algorithm/string/formatter.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/formatter.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -13,7 +13,7 @@
 
 #include <boost/detail/iterator.hpp>
 #include <boost/range/value_type.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/as_literal.hpp>
 
 #include <boost/algorithm/string/detail/formatter.hpp>
Modified: branches/release/boost/algorithm/string/iter_find.hpp
==============================================================================
--- branches/release/boost/algorithm/string/iter_find.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/iter_find.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -16,7 +16,7 @@
 #include <iterator>
 #include <boost/iterator/transform_iterator.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/iterator.hpp>
Modified: branches/release/boost/algorithm/string/predicate.hpp
==============================================================================
--- branches/release/boost/algorithm/string/predicate.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/predicate.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -17,7 +17,7 @@
 #include <boost/range/iterator.hpp>
 #include <boost/range/const_iterator.hpp>
 #include <boost/range/as_literal.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 
 #include <boost/algorithm/string/compare.hpp>
 #include <boost/algorithm/string/find.hpp>
Modified: branches/release/boost/algorithm/string/regex.hpp
==============================================================================
--- branches/release/boost/algorithm/string/regex.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/regex.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -14,7 +14,7 @@
 #include <boost/algorithm/string/config.hpp>
 #include <boost/regex.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/iterator.hpp>
Modified: branches/release/boost/algorithm/string/replace.hpp
==============================================================================
--- branches/release/boost/algorithm/string/replace.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/replace.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -13,7 +13,7 @@
 
 #include <boost/algorithm/string/config.hpp>
 
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 #include <boost/range/iterator.hpp>
Modified: branches/release/boost/algorithm/string/trim.hpp
==============================================================================
--- branches/release/boost/algorithm/string/trim.hpp	Fri Sep 20 12:49:51 2013	(r85803)
+++ branches/release/boost/algorithm/string/trim.hpp	2013-09-20 13:40:42 EDT (Fri, 20 Sep 2013)	(r85804)
@@ -17,7 +17,7 @@
 #include <boost/range/end.hpp>
 #include <boost/range/const_iterator.hpp>
 #include <boost/range/as_literal.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
 
 #include <boost/algorithm/string/detail/trim.hpp>
 #include <boost/algorithm/string/classification.hpp>