diff options
Diffstat (limited to 'Userland/Shell/Formatter.h')
-rw-r--r-- | Userland/Shell/Formatter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Shell/Formatter.h b/Userland/Shell/Formatter.h index b1f2cb4059..ac58e54ec2 100644 --- a/Userland/Shell/Formatter.h +++ b/Userland/Shell/Formatter.h @@ -117,8 +117,8 @@ private: StringView m_source; size_t m_output_cursor { 0 }; ssize_t m_cursor { -1 }; - RefPtr<AST::Node> m_root_node; - AST::Node* m_hit_node { nullptr }; + RefPtr<AST::Node const> m_root_node; + AST::Node const* m_hit_node { nullptr }; const AST::Node* m_parent_node { nullptr }; const AST::Node* m_last_visited_node { nullptr }; |