emplace (was insert)
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user