diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-26 16:21:43 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-29 14:18:06 +0100 |
commit | e7c285e3423ddd660447f6a6fc6bbae25f99f386 (patch) | |
tree | 1d700f09a5e96a2a0d390af30581097bdec0bf77 /src/particlecontainer.cpp | |
parent | e1a7c1d0ca30c2c4a293ffbff6b9c51c881d23e3 (diff) | |
download | mana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.tar.gz mana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.tar.bz2 mana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.tar.xz mana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.zip |
Apply C++11 fixits
modernize-loop-convert
modernize-deprecated-headers
Diffstat (limited to 'src/particlecontainer.cpp')
-rw-r--r-- | src/particlecontainer.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/particlecontainer.cpp b/src/particlecontainer.cpp index 002d4488..b3798a33 100644 --- a/src/particlecontainer.cpp +++ b/src/particlecontainer.cpp @@ -87,9 +87,8 @@ void ParticleList::removeLocally(Particle *particle) void ParticleList::clearLocally() { - for (auto it = mElements.begin(); - it != mElements.end(); it++) - (*it)->kill(); + for (auto &element : mElements) + element->kill(); mElements.clear(); } @@ -160,17 +159,16 @@ void ParticleVector::moveTo(float x, float y) { ParticleContainer::moveTo(x, y); - for (auto it = mIndexedElements.begin(); - it != mIndexedElements.end(); it++) + for (auto &indexedElement : mIndexedElements) { - if (*it) + if (indexedElement) { - (*it)->moveTo(x, y); + indexedElement->moveTo(x, y); - if ((*it)->isExtinct()) + if (indexedElement->isExtinct()) { - (*it)->kill(); - *it = NULL; + indexedElement->kill(); + indexedElement = NULL; } } } |