summaryrefslogtreecommitdiff
path: root/Userland/DevTools/Inspector/RemoteObjectPropertyModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools/Inspector/RemoteObjectPropertyModel.h')
-rw-r--r--Userland/DevTools/Inspector/RemoteObjectPropertyModel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/DevTools/Inspector/RemoteObjectPropertyModel.h b/Userland/DevTools/Inspector/RemoteObjectPropertyModel.h
index 8dc7a3d134..5b724996e0 100644
--- a/Userland/DevTools/Inspector/RemoteObjectPropertyModel.h
+++ b/Userland/DevTools/Inspector/RemoteObjectPropertyModel.h
@@ -41,8 +41,8 @@ public:
private:
explicit RemoteObjectPropertyModel(RemoteObject&);
- const JsonPath* cached_path_at(int n, const Vector<JsonPathElement>& prefix) const;
- const JsonPath* find_cached_path(const Vector<JsonPathElement>& path) const;
+ JsonPath const* cached_path_at(int n, Vector<JsonPathElement> const& prefix) const;
+ JsonPath const* find_cached_path(Vector<JsonPathElement> const& path) const;
RemoteObject& m_object;
mutable NonnullOwnPtrVector<JsonPath> m_paths;