world convert fatal error fix

This commit is contained in:
MihailRis 2024-06-05 09:41:06 +03:00
parent 6d6b8e24aa
commit 9dadae6e34

View File

@ -214,7 +214,7 @@ void Map::flag(const std::string& key, bool& dst) const {
}
Map& Map::put(std::string key, const Value& value) {
values.emplace(key, value);
values[key] = value;
return *this;
}