Switched to Corrade's arrays on MultiQueryResult@DualKey Map

This commit is contained in:
2026-03-09 18:23:52 +02:00
parent 7c92cde143
commit 2256c633d3
2 changed files with 17 additions and 15 deletions

View File

@@ -160,8 +160,8 @@ private:
// Repopulate and cleanup
for (bucket &entry : oldStorage) {
for (const hashStorage &hash : entry) {
Insert(hash.key, hash.value);
for (hashStorage &hash : entry) {
Insert(std::move(hash.key), std::move(hash.value));
}
entry.clear();