From: Joel Rosdahl Date: Mon, 10 Nov 2025 17:52:22 +0000 (+0100) Subject: refactor: Remove unnecessary cleanup of args after executing compiler X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c667062e89387c9494c8037a344c3514d109ac1;p=thirdparty%2Fccache.git refactor: Remove unnecessary cleanup of args after executing compiler --- diff --git a/src/ccache/ccache.cpp b/src/ccache/ccache.cpp index 1dc48be8..5d5e6de0 100644 --- a/src/ccache/ccache.cpp +++ b/src/ccache/ccache.cpp @@ -1225,7 +1225,6 @@ to_cache(Context& ctx, tl::expected result; result = do_execute(ctx, args); - args.pop_back(3); if (!result) { return tl::unexpected(result.error());