⚡ avoid copying a string
This commit is contained in:
parent
9ff0cc0f02
commit
f1cd15ce7e
2 changed files with 2 additions and 2 deletions
|
@ -12477,7 +12477,7 @@ basic_json_parser_74:
|
|||
// the valid JSON Patch operations
|
||||
enum class patch_operations {add, remove, replace, move, copy, test, invalid};
|
||||
|
||||
const auto get_op = [](const std::string op)
|
||||
const auto get_op = [](const std::string & op)
|
||||
{
|
||||
if (op == "add")
|
||||
{
|
||||
|
|
|
@ -11511,7 +11511,7 @@ class basic_json
|
|||
// the valid JSON Patch operations
|
||||
enum class patch_operations {add, remove, replace, move, copy, test, invalid};
|
||||
|
||||
const auto get_op = [](const std::string op)
|
||||
const auto get_op = [](const std::string & op)
|
||||
{
|
||||
if (op == "add")
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue