diff --git a/include/jsoncons/json_location.hpp b/include/jsoncons/json_location.hpp index a499d47093..33cdb25392 100644 --- a/include/jsoncons/json_location.hpp +++ b/include/jsoncons/json_location.hpp @@ -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 typename std::enable_if::value, basic_json_location&>::type operator/=(IntegerType val)