From 1c667062e89387c9494c8037a344c3514d109ac1 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Mon, 10 Nov 2025 18:52:22 +0100 Subject: [PATCH] refactor: Remove unnecessary cleanup of args after executing compiler --- src/ccache/ccache.cpp | 1 - 1 file changed, 1 deletion(-) 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()); -- 2.47.3