|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r85134 - branches/release/boost/algorithm/string/detail
From: marshall_at_[hidden]
Date: 2013-07-23 12:48:27
Author: marshall
Date: 2013-07-23 12:48:27 EDT (Tue, 23 Jul 2013)
New Revision: 85134
URL: http://svn.boost.org/trac/boost/changeset/85134
Log:
Merge bug fix to Release; Fixes #8546
Properties modified:
branches/release/boost/algorithm/string/detail/finder.hpp (contents, props changed)
Text files modified:
branches/release/boost/algorithm/string/detail/finder.hpp | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
Modified: branches/release/boost/algorithm/string/detail/finder.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/finder.hpp Tue Jul 23 12:06:38 2013 (r85133)
+++ branches/release/boost/algorithm/string/detail/finder.hpp 2013-07-23 12:48:27 EDT (Tue, 23 Jul 2013) (r85134)
@@ -142,7 +142,6 @@
ForwardIteratorT End,
std::forward_iterator_tag ) const
{
- typedef ForwardIteratorT input_iterator_type;
typedef iterator_range<ForwardIteratorT> result_type;
first_finder_type first_finder(
@@ -263,7 +262,6 @@
ForwardIteratorT End,
unsigned int N) const
{
- typedef ForwardIteratorT input_iterator_type;
typedef iterator_range<ForwardIteratorT> result_type;
// Sanity check
@@ -298,7 +296,6 @@
ForwardIteratorT End,
unsigned int N) const
{
- typedef ForwardIteratorT input_iterator_type;
typedef iterator_range<ForwardIteratorT> result_type;
// Sanity check
@@ -362,7 +359,6 @@
unsigned int N,
std::random_access_iterator_tag )
{
- typedef ForwardIteratorT input_iterator_type;
typedef iterator_range<ForwardIteratorT> result_type;
if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
@@ -436,7 +432,6 @@
unsigned int N,
std::random_access_iterator_tag )
{
- typedef ForwardIteratorT input_iterator_type;
typedef iterator_range<ForwardIteratorT> result_type;
if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
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