Skip to content

Commit

Permalink
to_jsonpath
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Nov 14, 2023
1 parent af92dc9 commit 117bf8d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions include/jsoncons/json_location.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,18 +204,6 @@ namespace jsoncons {
return *this;
}

basic_json_location& operator/=(const string_type& s)
{
elements_.emplace_back(s);
return *this;
}

basic_json_location& operator/=(string_type&& s)
{
elements_.emplace_back(std::move(s));
return *this;
}

template <class IntegerType>
typename std::enable_if<extension_traits::is_integer<IntegerType>::value, basic_json_location&>::type
operator/=(IntegerType val)
Expand Down

0 comments on commit 117bf8d

Please sign in to comment.