boost/range/iterator_range_core.hpp: fixing bug introduced with rev. 67153 (major breakage)

[SVN r67169]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2010-12-11 14:30:49 +00:00
parent 4b96ce34aa
commit 1ff26bc99b

View File

@ -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