chore: unix/ArchConsoleUnix, use default for constructor and deconstructor

This commit is contained in:
sithlord48
2025-04-30 21:31:30 -04:00
committed by Nick Bolton
parent edc0c0d7a0
commit bd2188beb1
3 changed files with 2 additions and 19 deletions

View File

@ -30,7 +30,6 @@ if(WIN32)
elseif(UNIX)
set(PLATFORM_CODE
unix/ArchConsoleUnix.cpp
unix/ArchConsoleUnix.h
unix/ArchDaemonUnix.cpp
unix/ArchDaemonUnix.h

View File

@ -1,16 +0,0 @@
/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#include "arch/unix/ArchConsoleUnix.h"
ArchConsoleUnix::ArchConsoleUnix()
{
}
ArchConsoleUnix::~ArchConsoleUnix()
{
}

View File

@ -14,6 +14,6 @@
class ArchConsoleUnix : public ArchConsoleStd
{
public:
ArchConsoleUnix();
~ArchConsoleUnix() override;
ArchConsoleUnix() = default;
~ArchConsoleUnix() override = default;
};