forked from boostorg/range
boost/range/iterator_range_core.hpp: fixing bug introduced with rev. 67153 (major breakage)
[SVN r67169]
This commit is contained in:
@ -230,7 +230,7 @@ namespace boost
|
||||
|
||||
difference_type size() const
|
||||
{
|
||||
return std::distance(m_End, m_Begin);
|
||||
return std::distance(m_Begin, m_End);
|
||||
}
|
||||
|
||||
bool empty() const
|
||||
|
Reference in New Issue
Block a user