We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71762ad commit 89ca331Copy full SHA for 89ca331
include/json_struct/json_struct.h
@@ -8087,7 +8087,9 @@ struct TypeHandlerMap
8087
return error;
8088
while (context.token.value_type != Type::ObjectEnd)
8089
{
8090
- Key key(context.token.name.data, context.token.name.size);
+ std::string str;
8091
+ Internal::handle_json_escapes_in(context.token.name, str);
8092
+ Key key(str.data(), str.size());
8093
Value v;
8094
error = TypeHandler<Value>::to(v, context);
8095
to_type[std::move(key)] = std::move(v);
0 commit comments