diff options
author | sin-ack <sin-ack@users.noreply.github.com> | 2021-08-30 18:12:48 +0000 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-09-02 03:47:47 +0430 |
commit | 8ea22121ac8fe0c0e3a073ecd607713f45b34ff3 (patch) | |
tree | dbdfc49938925ea75a70894d2c5de47912184c6b /Userland/Shell/Shell.cpp | |
parent | e9121f8b1f9d31f0da89f34eac69a7da9f2901a0 (diff) | |
download | serenity-8ea22121ac8fe0c0e3a073ecd607713f45b34ff3.zip |
Userland: Migrate to argument-less deferred_invoke
Only one place used this argument and it was to hold on to a strong ref
for the object. Since we already do that now, there's no need to keep
this argument around since this can be easily captured.
This commit contains no changes.
Diffstat (limited to 'Userland/Shell/Shell.cpp')
-rw-r--r-- | Userland/Shell/Shell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Shell/Shell.cpp b/Userland/Shell/Shell.cpp index 4f7469dd16..4a4ef0b4ba 100644 --- a/Userland/Shell/Shell.cpp +++ b/Userland/Shell/Shell.cpp @@ -958,7 +958,7 @@ void Shell::run_tail(const AST::Command& invoking_command, const AST::NodeWithAc void Shell::run_tail(RefPtr<Job> job) { if (auto cmd = job->command_ptr()) { - deferred_invoke([=, this](auto&) { + deferred_invoke([=, this] { for (auto& next_in_chain : cmd->next_chain) { run_tail(*cmd, next_in_chain, job->exit_code()); } |