mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-07 21:07:23 +08:00
chore: ArgBase, use default for deconstructor
This commit is contained in:
parent
c39f69b64d
commit
57e3ff1fab
@ -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
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user