From 68db2c348418fceff10ff4efc4d449a6b2532c4e Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 1 May 2025 11:27:07 -0400 Subject: [PATCH] chore: BaseClientProxy use default for deconstructor --- src/lib/server/BaseClientProxy.cpp | 5 ----- src/lib/server/BaseClientProxy.h | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/lib/server/BaseClientProxy.cpp b/src/lib/server/BaseClientProxy.cpp index a6a15f89a..34f4fc132 100644 --- a/src/lib/server/BaseClientProxy.cpp +++ b/src/lib/server/BaseClientProxy.cpp @@ -16,11 +16,6 @@ BaseClientProxy::BaseClientProxy(const std::string &name) : m_name(name), m_x(0) // do nothing } -BaseClientProxy::~BaseClientProxy() -{ - // do nothing -} - void BaseClientProxy::setJumpCursorPos(int32_t x, int32_t y) { m_x = x; diff --git a/src/lib/server/BaseClientProxy.h b/src/lib/server/BaseClientProxy.h index 7045da508..ee37c69be 100644 --- a/src/lib/server/BaseClientProxy.h +++ b/src/lib/server/BaseClientProxy.h @@ -21,7 +21,7 @@ public: \c name is the name of the client. */ BaseClientProxy(const std::string &name); - ~BaseClientProxy() override; + ~BaseClientProxy() override = default; //! @name manipulators //@{