You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When iterating by using range with signed variables, the iteration doesn't start at all because the int gets converted to uint and -1 is set to std::uint::max, that's unintuitional.
There should be a runtime error (start > end) or the use of uint should be enforced somehow.