diff -urp boost_1_54_0-orig/boost/algorithm/string/detail/finder.hpp boost_1_54_0/boost/algorithm/string/detail/finder.hpp
|
old
|
new
|
namespace boost {
|
| 142 | 142 | ForwardIteratorT End, |
| 143 | 143 | std::forward_iterator_tag ) const |
| 144 | 144 | { |
| 145 | | typedef ForwardIteratorT input_iterator_type; |
| 146 | 145 | typedef iterator_range<ForwardIteratorT> result_type; |
| 147 | 146 | |
| 148 | 147 | first_finder_type first_finder( |
| … |
… |
namespace boost {
|
| 263 | 262 | ForwardIteratorT End, |
| 264 | 263 | unsigned int N) const |
| 265 | 264 | { |
| 266 | | typedef ForwardIteratorT input_iterator_type; |
| 267 | 265 | typedef iterator_range<ForwardIteratorT> result_type; |
| 268 | 266 | |
| 269 | 267 | // Sanity check |
| … |
… |
namespace boost {
|
| 298 | 296 | ForwardIteratorT End, |
| 299 | 297 | unsigned int N) const |
| 300 | 298 | { |
| 301 | | typedef ForwardIteratorT input_iterator_type; |
| 302 | 299 | typedef iterator_range<ForwardIteratorT> result_type; |
| 303 | 300 | |
| 304 | 301 | // Sanity check |
| … |
… |
namespace boost {
|
| 362 | 359 | unsigned int N, |
| 363 | 360 | std::random_access_iterator_tag ) |
| 364 | 361 | { |
| 365 | | typedef ForwardIteratorT input_iterator_type; |
| 366 | 362 | typedef iterator_range<ForwardIteratorT> result_type; |
| 367 | 363 | |
| 368 | 364 | if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) ) |
| … |
… |
namespace boost {
|
| 436 | 432 | unsigned int N, |
| 437 | 433 | std::random_access_iterator_tag ) |
| 438 | 434 | { |
| 439 | | typedef ForwardIteratorT input_iterator_type; |
| 440 | 435 | typedef iterator_range<ForwardIteratorT> result_type; |
| 441 | 436 | |
| 442 | 437 | if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) ) |