Fat fingered the equals.

This commit is contained in:
Billy O'Neal (VC LIBS) 2018-05-15 19:18:24 -07:00
parent f46e88153e
commit 1da082353f

View File

@ -266,7 +266,7 @@ namespace details
span_iterator rhs) noexcept span_iterator rhs) noexcept
{ // test that [lhs, rhs) forms a valid range inside an STL algorithm { // test that [lhs, rhs) forms a valid range inside an STL algorithm
Expects(lhs.span_ == rhs.span_ // range spans have to match Expects(lhs.span_ == rhs.span_ // range spans have to match
&& lhs.index_ < rhs.index_); // range must not be transposed && lhs.index_ <= rhs.index_); // range must not be transposed
} }
cosntexpr void _Verify_offset(const difference_type n) const noexcpt cosntexpr void _Verify_offset(const difference_type n) const noexcpt