This commit is contained in:
Siarhei Fedartsou
2024-11-03 13:07:28 +01:00
parent 5b69c0a7f2
commit d5ab66496c
3 changed files with 68 additions and 61 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ using Value = std::variant<String, Number, Object, Array, True, False, Null>;
*/
struct Object
{
std::unordered_map<std::string, Value> values;
std::unordered_map<std::string_view, Value> values;
};
/**