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
in Model::bodiesToMove(), we loop over bodies_ which is a std::map with
bodies_
for(int i = 0; i < bodies_.size(); i++){ bodies_[i]
If the keys of bodies_ are not starting with 0 and consecutive, we access non-existing elements, which leads to a seg fault
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
in Model::bodiesToMove(), we loop over
bodies_
which is a std::map withIf the keys of
bodies_
are not starting with 0 and consecutive, we access non-existing elements, which leads to a seg faultThe text was updated successfully, but these errors were encountered: