pull/240/merge
Niels 2016-04-24 19:04:10 +02:00
parent fb54e212b6
commit 8d4cf5ef8d
2 changed files with 2 additions and 2 deletions

View File

@ -9612,7 +9612,7 @@ basic_json_parser_63:
// collect mandatory members
const std::string op = get_value("op", "op", true);
const std::string path = get_value(op, "path", true);
json_pointer ptr(get_value(op, "path", true));
json_pointer ptr(path);
if (op == "add")
{

View File

@ -8922,7 +8922,7 @@ class basic_json
// collect mandatory members
const std::string op = get_value("op", "op", true);
const std::string path = get_value(op, "path", true);
json_pointer ptr(get_value(op, "path", true));
json_pointer ptr(path);
if (op == "add")
{