chore: ClientArgs, use default for deconstructor

This commit is contained in:
sithlord48 2025-05-01 10:56:15 -04:00 committed by Nick Bolton
parent f376b049e4
commit ee22c31f32
2 changed files with 1 additions and 5 deletions

View File

@ -8,10 +8,6 @@
namespace deskflow {
ClientArgs::~ClientArgs()
{
}
ClientArgs::ClientArgs()
{
m_classType = kClient;

View File

@ -22,7 +22,7 @@ class ClientArgs : public ArgsBase
public:
ClientArgs();
~ClientArgs() override;
~ClientArgs() override = default;
public:
int m_yscroll = 0;