This commit is contained in:
Siarhei Fedartsou 2024-11-03 12:41:33 +01:00
parent c3e9e12fc3
commit 09020115d2

View File

@ -104,7 +104,7 @@ using Value = std::variant<String, Number, Object, Array, True, False, Null>;
*/
struct Object
{
std::unordered_map<std::string_view, Value> values;
std::unordered_map<std::string, Value> values;
};
/**