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
There is a typo (missing * operator) issue at the following code block; vector<Particle >::iterator it = particlePointers.begin();
vector<Particle >::iterator it = particlePointers.begin();
It should be replaced with the following; vector<Particle * >::iterator it = particlePointers.begin();
vector<Particle * >::iterator it = particlePointers.begin();
The text was updated successfully, but these errors were encountered:
how about just using auto i think in this case - best is just make an edit and PR (can be done via GitHub itself)
auto
Sorry, something went wrong.
Sure @elliotwoods
No branches or pull requests
There is a typo (missing * operator) issue at the following code block;
vector<Particle >::iterator it = particlePointers.begin();
It should be replaced with the following;
vector<Particle * >::iterator it = particlePointers.begin();
The text was updated successfully, but these errors were encountered: