mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 19:02:38 +02:00
cr
This commit is contained in:
parent
a8a0671d6c
commit
19fd7b5ac7
1 changed files with 5 additions and 5 deletions
|
@ -38,11 +38,11 @@ std::shared_ptr<PickQuery> PickManager::findPick(unsigned int uid) const {
|
|||
|
||||
void PickManager::removePick(unsigned int uid) {
|
||||
withWriteLock([&] {
|
||||
auto type = _typeMap.find(uid);
|
||||
if (type != _typeMap.end()) {
|
||||
_picks[type->second].erase(uid);
|
||||
_totalPickCounts[type->second]--;
|
||||
_typeMap.erase(uid);
|
||||
auto typeIt = _typeMap.find(uid);
|
||||
if (typeIt != _typeMap.end()) {
|
||||
_picks[typeIt->second].erase(uid);
|
||||
_totalPickCounts[typeIt->second]--;
|
||||
_typeMap.erase(typeIt);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue