From eb080b1e7440288296633446c0d78b49482ce7ac Mon Sep 17 00:00:00 2001 From: MonkeybreadSoftware Date: Wed, 27 Sep 2023 08:45:57 +0200 Subject: [PATCH] Update jmespath.hpp More shadowed parameters renamed. --- include/jsoncons_ext/jmespath/jmespath.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/jsoncons_ext/jmespath/jmespath.hpp b/include/jsoncons_ext/jmespath/jmespath.hpp index 1b22959f80..5c2f9ceda6 100644 --- a/include/jsoncons_ext/jmespath/jmespath.hpp +++ b/include/jsoncons_ext/jmespath/jmespath.hpp @@ -3112,8 +3112,8 @@ namespace jmespath { string_type key; std::vector tokens; - key_tokens(string_type&& key, std::vector&& tokens) noexcept - : key(std::move(key)), tokens(std::move(tokens)) + key_tokens(string_type&& Key, std::vector&& Tokens) noexcept + : key(std::move(Key)), tokens(std::move(Tokens)) { } };