|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r85106 - trunk/boost/algorithm/string/detail
From: marshall_at_[hidden]
Date: 2013-07-22 11:46:43
Author: marshall
Date: 2013-07-22 11:46:43 EDT (Mon, 22 Jul 2013)
New Revision: 85106
URL: http://svn.boost.org/trac/boost/changeset/85106
Log:
Removed unused typedef; Refs #8546
Text files modified:
trunk/boost/algorithm/string/detail/finder.hpp | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
Modified: trunk/boost/algorithm/string/detail/finder.hpp
==============================================================================
--- trunk/boost/algorithm/string/detail/finder.hpp Mon Jul 22 11:03:42 2013 (r85105)
+++ trunk/boost/algorithm/string/detail/finder.hpp 2013-07-22 11:46:43 EDT (Mon, 22 Jul 2013) (r85106)
@@ -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