1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:17:36 +00:00

Shell: Make Command::redirections a NonnullRefPtrVector

This commit is contained in:
Andreas Kling 2020-08-07 09:42:12 +02:00
parent c29681cb03
commit 3b3d158649
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ private:
struct Command {
Vector<String> argv;
Vector<NonnullRefPtr<Redirection>> redirections;
NonnullRefPtrVector<Redirection> redirections;
bool should_wait { true };
bool is_pipe_source { false };
bool should_notify_if_in_background { true };