emplace (was insert)

This commit is contained in:
2025-03-01 19:11:30 +01:00
parent 254de7a9ee
commit e8441205a4

View File

@@ -166,7 +166,7 @@ class DataBuffer {
K newKey; K newKey;
V newValue; V newValue;
*this >> newKey >> newValue; *this >> newKey >> newValue;
data.insert({newKey, newValue}); data.emplace(newKey, newValue);
} }
return *this; return *this;
} }