We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6428e55 commit 1372e9aCopy full SHA for 1372e9a
include/boost/iterator/filter_iterator.hpp
@@ -104,7 +104,7 @@ class filter_iterator :
104
105
template< typename OtherIterator, typename = enable_if_convertible_t< OtherIterator, Iterator > >
106
filter_iterator(filter_iterator< Predicate, OtherIterator > const& t) :
107
- super_t(t.base()), m_storage(t.m_storage.predicate(), m_storage.m_end)
+ super_t(t.base()), m_storage(t.m_storage.predicate(), t.m_storage.m_end)
108
{}
109
110
Predicate predicate() const { return m_storage.predicate(); }
0 commit comments