From: Joel Rosdahl Date: Mon, 18 Dec 2023 20:08:26 +0000 (+0100) Subject: chore: Remove unused local variable X-Git-Tag: v4.9~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e8cd7c61b8f06d0c4ecda3fa9e0c5272dc34c25;p=thirdparty%2Fccache.git chore: Remove unused local variable --- diff --git a/src/storage/local/LocalStorage.cpp b/src/storage/local/LocalStorage.cpp index e0f6947f1..51f675676 100644 --- a/src/storage/local/LocalStorage.cpp +++ b/src/storage/local/LocalStorage.cpp @@ -974,9 +974,6 @@ LocalStorage::recompress(const std::optional level, const auto [content_size_quantity, content_size_unit] = util::split_once(human_readable(recompressor.content_size()), ' '); ASSERT(content_size_unit); - const auto [incompr_size_quantity, incompr_size_unit] = - util::split_once(human_readable(incompressible_size), ' '); - ASSERT(incompr_size_unit); const auto [size_diff_quantity, size_diff_unit] = util::split_once(human_readable(std::abs(size_diff)), ' '); ASSERT(size_diff_unit);