From dae7b4f51191644562196d9f8d9f03cdfe35f8c8 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Tue, 19 Aug 2025 17:01:18 -0400 Subject: [PATCH] auth: use explicit default destructor Signed-off-by: Patrick Donnelly --- src/auth/Auth.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/Auth.h b/src/auth/Auth.h index 4252da79788..e4326834a7d 100644 --- a/src/auth/Auth.h +++ b/src/auth/Auth.h @@ -400,7 +400,7 @@ WRITE_CLASS_ENCODER(RotatingSecrets) class KeyStore { public: - virtual ~KeyStore() {} + virtual ~KeyStore() = default; virtual bool get_secret(const EntityName& name, CryptoKey& secret) const = 0; virtual bool get_service_secret(uint32_t service_id, uint64_t secret_id, CryptoKey& secret) const = 0; -- 2.47.3