[boost][range] - Ticket 5486 - Removal of unnecessary variables from adjacent_filtered_range. This removes the requirement for the predicate to be default constructible.

[SVN r72102]
This commit is contained in:
Neil Groves
2011-05-22 20:33:06 +00:00
parent b06fca8378
commit 44c26a3356
3 changed files with 57 additions and 4 deletions

View File

@ -143,10 +143,6 @@ namespace boost
skip_iter(boost::end(r), boost::end(r), p))
{
}
private:
P m_pred;
R* m_range;
};
template< class T >