From dfb043f1d590366ab035750e344c35490f64e9ad Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Mon, 20 Nov 2023 12:21:19 -0500 Subject: [PATCH] json_location_parser --- include/jsoncons_ext/jsonpath/json_location.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/jsoncons_ext/jsonpath/json_location.hpp b/include/jsoncons_ext/jsonpath/json_location.hpp index 758840c6be..13f605a979 100644 --- a/include/jsoncons_ext/jsonpath/json_location.hpp +++ b/include/jsoncons_ext/jsonpath/json_location.hpp @@ -10,7 +10,7 @@ #include #include #include -#include +#include namespace jsoncons { namespace jsonpath { @@ -149,7 +149,7 @@ namespace jsonpath { static basic_json_location parse(const jsoncons::basic_string_view& normalized_path) { - jsonpath::detail::normalized_path_parser> parser; + jsonpath::detail::json_location_parser> parser; std::vector location = parser.parse(normalized_path); return basic_json_location(std::move(location));