1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

(Fixed something that was missing from the last commit)

This commit is contained in:
jules 2014-04-04 07:27:19 +01:00
parent aff3ce418b
commit 5645702bd4

View file

@ -324,7 +324,7 @@ public:
const ScopedLockType lock1 (getLock());
const typename OtherHashMapType::ScopedLockType lock2 (otherHashMap.getLock());
hashSlots.swapWith (otherHashMap.slots);
hashSlots.swapWith (otherHashMap.hashSlots);
std::swap (totalNumItems, otherHashMap.totalNumItems);
}
@ -400,7 +400,7 @@ public:
if (index >= hashMap.getNumSlots())
return false;
entry = hashMap.slots.getUnchecked (index++);
entry = hashMap.hashSlots.getUnchecked (index++);
}
return true;