mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Fix ordering of bounds_iterator
This commit is contained in:
parent
c973e82dff
commit
1475af7a80
@ -1075,6 +1075,8 @@ public:
|
|||||||
{
|
{
|
||||||
if (curr[i] < rhs.curr[i])
|
if (curr[i] < rhs.curr[i])
|
||||||
return true;
|
return true;
|
||||||
|
if (rhs.curr[i] < curr[i])
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user