Skip to content

Commit

Permalink
Merge pull request #460 from MonkeybreadSoftware/patch-11
Browse files Browse the repository at this point in the history
Update jmespath.hpp
  • Loading branch information
danielaparker authored Sep 27, 2023
2 parents 0ee03cd + eb080b1 commit 5589d0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/jsoncons_ext/jmespath/jmespath.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3112,8 +3112,8 @@ namespace jmespath {
string_type key;
std::vector<token> tokens;

key_tokens(string_type&& key, std::vector<token>&& tokens) noexcept
: key(std::move(key)), tokens(std::move(tokens))
key_tokens(string_type&& Key, std::vector<token>&& Tokens) noexcept
: key(std::move(Key)), tokens(std::move(Tokens))
{
}
};
Expand Down

0 comments on commit 5589d0d

Please sign in to comment.