chore: ArgBase, use default for deconstructor

This commit is contained in:
sithlord48 2025-05-01 10:54:01 -04:00 committed by Nick Bolton
parent c39f69b64d
commit 57e3ff1fab
3 changed files with 1 additions and 17 deletions

View File

@ -1,15 +0,0 @@
/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2012 - 2020 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2012 Nick Bolton
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#include "ArgsBase.h"
namespace deskflow {
ArgsBase::~ArgsBase()
{
//
}
} // namespace deskflow

View File

@ -19,7 +19,7 @@ class ArgsBase
{
public:
ArgsBase() = default;
virtual ~ArgsBase();
virtual ~ArgsBase() = default;
/// @brief This sets the type of the derived class
enum Type

View File

@ -69,7 +69,6 @@ add_library(${lib_name} STATIC ${PLATFORM_CODE}
AppUtil.h
ArgParser.cpp
ArgParser.h
ArgsBase.cpp
ArgsBase.h
Chunk.cpp
Chunk.h