mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-19 23:52:12 +02:00
merged from trunk
[SVN r33713]
This commit is contained in:
@ -53,14 +53,14 @@ namespace boost
|
|||||||
public:
|
public:
|
||||||
filter_iterator() { }
|
filter_iterator() { }
|
||||||
|
|
||||||
filter_iterator(Predicate f, Iterator x, Iterator end = Iterator())
|
filter_iterator(Predicate f, Iterator x, Iterator end_ = Iterator())
|
||||||
: super_t(x), m_predicate(f), m_end(end)
|
: super_t(x), m_predicate(f), m_end(end_)
|
||||||
{
|
{
|
||||||
satisfy_predicate();
|
satisfy_predicate();
|
||||||
}
|
}
|
||||||
|
|
||||||
filter_iterator(Iterator x, Iterator end = Iterator())
|
filter_iterator(Iterator x, Iterator end_ = Iterator())
|
||||||
: super_t(x), m_predicate(), m_end(end)
|
: super_t(x), m_predicate(), m_end(end_)
|
||||||
{
|
{
|
||||||
// Pro8 is a little too aggressive about instantiating the
|
// Pro8 is a little too aggressive about instantiating the
|
||||||
// body of this function.
|
// body of this function.
|
||||||
|
Reference in New Issue
Block a user