We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm compiling this project with the MSVC. In debug mode tests asserting with Expression: vector subscript out of range for &_ids[n+size]
Expression: vector subscript out of range
&_ids[n+size]
std::nth_element(&_ids[n], &_ids[n+left], &_ids[n+size], ComparePointsById(&_points[0].p[j]));
here https://github.com/wdas/partio/blob/main/src/lib/core/KdTree.h#L328
I know the algorithm never reaches the _ids[n+size] element, but I can't persuade the compiler.
_ids[n+size]
Thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm compiling this project with the MSVC. In debug mode tests asserting with
Expression: vector subscript out of range
for&_ids[n+size]
here
https://github.com/wdas/partio/blob/main/src/lib/core/KdTree.h#L328
I know the algorithm never reaches the
_ids[n+size]
element, but I can't persuade the compiler.Thank you
The text was updated successfully, but these errors were encountered: