mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-06 01:06:37 +02:00
@ -142,7 +142,6 @@ namespace boost {
|
|||||||
ForwardIteratorT End,
|
ForwardIteratorT End,
|
||||||
std::forward_iterator_tag ) const
|
std::forward_iterator_tag ) const
|
||||||
{
|
{
|
||||||
typedef ForwardIteratorT input_iterator_type;
|
|
||||||
typedef iterator_range<ForwardIteratorT> result_type;
|
typedef iterator_range<ForwardIteratorT> result_type;
|
||||||
|
|
||||||
first_finder_type first_finder(
|
first_finder_type first_finder(
|
||||||
@ -263,7 +262,6 @@ namespace boost {
|
|||||||
ForwardIteratorT End,
|
ForwardIteratorT End,
|
||||||
unsigned int N) const
|
unsigned int N) const
|
||||||
{
|
{
|
||||||
typedef ForwardIteratorT input_iterator_type;
|
|
||||||
typedef iterator_range<ForwardIteratorT> result_type;
|
typedef iterator_range<ForwardIteratorT> result_type;
|
||||||
|
|
||||||
// Sanity check
|
// Sanity check
|
||||||
@ -298,7 +296,6 @@ namespace boost {
|
|||||||
ForwardIteratorT End,
|
ForwardIteratorT End,
|
||||||
unsigned int N) const
|
unsigned int N) const
|
||||||
{
|
{
|
||||||
typedef ForwardIteratorT input_iterator_type;
|
|
||||||
typedef iterator_range<ForwardIteratorT> result_type;
|
typedef iterator_range<ForwardIteratorT> result_type;
|
||||||
|
|
||||||
// Sanity check
|
// Sanity check
|
||||||
@ -362,7 +359,6 @@ namespace boost {
|
|||||||
unsigned int N,
|
unsigned int N,
|
||||||
std::random_access_iterator_tag )
|
std::random_access_iterator_tag )
|
||||||
{
|
{
|
||||||
typedef ForwardIteratorT input_iterator_type;
|
|
||||||
typedef iterator_range<ForwardIteratorT> result_type;
|
typedef iterator_range<ForwardIteratorT> result_type;
|
||||||
|
|
||||||
if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
|
if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
|
||||||
@ -436,7 +432,6 @@ namespace boost {
|
|||||||
unsigned int N,
|
unsigned int N,
|
||||||
std::random_access_iterator_tag )
|
std::random_access_iterator_tag )
|
||||||
{
|
{
|
||||||
typedef ForwardIteratorT input_iterator_type;
|
|
||||||
typedef iterator_range<ForwardIteratorT> result_type;
|
typedef iterator_range<ForwardIteratorT> result_type;
|
||||||
|
|
||||||
if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
|
if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
|
||||||
|
Reference in New Issue
Block a user