From: Joel Rosdahl Date: Sat, 26 Aug 2023 18:37:20 +0000 (+0200) Subject: chore: Avoid linting suppression for Storage::~Storage X-Git-Tag: v4.9~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f965ecb6bc9554d92f95525caff0a48ec44fa1a6;p=thirdparty%2Fccache.git chore: Avoid linting suppression for Storage::~Storage --- diff --git a/src/storage/Storage.cpp b/src/storage/Storage.cpp index a37a07c58..189e21e27 100644 --- a/src/storage/Storage.cpp +++ b/src/storage/Storage.cpp @@ -212,10 +212,7 @@ Storage::Storage(const Config& config) : local(config), m_config(config) // Define the destructor in the implementation file to avoid having to declare // RemoteStorageEntry and its constituents in the header file. -// NOLINTNEXTLINE(modernize-use-equals-default) -Storage::~Storage() -{ -} +Storage::~Storage() = default; void Storage::initialize()