diff options
Diffstat (limited to 'Userland/Shell/PosixParser.h')
-rw-r--r-- | Userland/Shell/PosixParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Shell/PosixParser.h b/Userland/Shell/PosixParser.h index 06a79426d9..a45a0cbc4a 100644 --- a/Userland/Shell/PosixParser.h +++ b/Userland/Shell/PosixParser.h @@ -63,7 +63,7 @@ private: struct CaseItemsResult { Vector<AST::Position> pipe_positions; - NonnullRefPtrVector<AST::Node> nodes; + Vector<NonnullRefPtr<AST::Node>> nodes; }; ErrorOr<RefPtr<AST::Node>> parse_complete_command(); |