From 57cb7227a489d39031230276d5e1f923fa0ec167 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 1 May 2025 10:48:57 -0400 Subject: [PATCH] chore: Interface.h, use default for deconstructor --- src/lib/common/IInterface.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib/common/IInterface.h b/src/lib/common/IInterface.h index 8d138a6c3..c2df3add4 100644 --- a/src/lib/common/IInterface.h +++ b/src/lib/common/IInterface.h @@ -18,7 +18,5 @@ class IInterface { public: //! Interface destructor does nothing - virtual ~IInterface() - { - } + virtual ~IInterface() = default; };