Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use std::next to avoid debug asserts on vector access
When building in debug mode (at least on windows) vector access is checked such that we can't use operator[] to point to what is normally std::vector::end() since it triggers an assert. Use std::next to advance instead.
- Loading branch information