diff options
author | Kirill Kirilenko <kirill@ultracoder.org> | 2015-01-17 14:00:12 +0100 |
---|---|---|
committer | Kirill Kirilenko <kirill@ultracoder.org> | 2015-01-17 14:00:12 +0100 |
commit | 41f30edcf77521630b7f69d3e94338e6ab2f821f (patch) | |
tree | 7dabeb891ea4d1efc8cbc9c55d5530cf9e9d301a /src | |
parent | Fixed CppCheck: (performance) Possible inefficient checking for emptiness. (diff) | |
download | cuberite-41f30edcf77521630b7f69d3e94338e6ab2f821f.tar cuberite-41f30edcf77521630b7f69d3e94338e6ab2f821f.tar.gz cuberite-41f30edcf77521630b7f69d3e94338e6ab2f821f.tar.bz2 cuberite-41f30edcf77521630b7f69d3e94338e6ab2f821f.tar.lz cuberite-41f30edcf77521630b7f69d3e94338e6ab2f821f.tar.xz cuberite-41f30edcf77521630b7f69d3e94338e6ab2f821f.tar.zst cuberite-41f30edcf77521630b7f69d3e94338e6ab2f821f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/Root.cpp | 2 | ||||
-rw-r--r-- | src/SetChunkData.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Root.cpp b/src/Root.cpp index 8951bafe6..eaacf3608 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -639,7 +639,7 @@ bool cRoot::FindAndDoWithPlayer(const AString & a_PlayerName, cPlayerListCallbac bool cRoot::DoWithPlayerByUUID(const AString & a_PlayerUUID, cPlayerListCallback & a_Callback) { - for (WorldMap::iterator itr = m_WorldsByName.begin(); itr != m_WorldsByName.end();itr++) + for (WorldMap::iterator itr = m_WorldsByName.begin(); itr != m_WorldsByName.end(); ++itr) { if (itr->second->DoWithPlayerByUUID(a_PlayerUUID, a_Callback)) { diff --git a/src/SetChunkData.cpp b/src/SetChunkData.cpp index e335176a8..5a0bea980 100644 --- a/src/SetChunkData.cpp +++ b/src/SetChunkData.cpp @@ -132,7 +132,7 @@ void cSetChunkData::RemoveInvalidBlockEntities(void) ItemTypeToString(WorldBlockType).c_str(), WorldBlockType ); cBlockEntityList::iterator itr2 = itr; - itr2++; + ++itr2; delete *itr; m_BlockEntities.erase(itr); itr = itr2; |