From 982a581ae493daf6ec6812eb898ba62bd3b22b9c Mon Sep 17 00:00:00 2001 From: MonkeybreadSoftware Date: Wed, 27 Sep 2023 09:14:31 +0200 Subject: [PATCH] Update jsonpatch.hpp Another shadow warning gone --- include/jsoncons_ext/jsonpatch/jsonpatch.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/jsoncons_ext/jsonpatch/jsonpatch.hpp b/include/jsoncons_ext/jsonpatch/jsonpatch.hpp index 285026f3d..78ff4f892 100644 --- a/include/jsoncons_ext/jsonpatch/jsonpatch.hpp +++ b/include/jsoncons_ext/jsonpatch/jsonpatch.hpp @@ -134,8 +134,8 @@ namespace detail { json_pointer_type path; Json value; - entry(op_type op, const json_pointer_type& path, const Json& value) - : op(op), path(path), value(value) + entry(op_type Op, const json_pointer_type& Path, const Json& Value) + : op(Op), path(Path), value(Value) { }