chore: ClientApp, use default for deconstructor

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

View File

@ -68,10 +68,6 @@ ClientApp::ClientApp(IEventQueue *events)
{
}
ClientApp::~ClientApp()
{
}
void ClientApp::parseArgs(int argc, const char *const *argv)
{
ArgParser argParser(this);

View File

@ -24,7 +24,7 @@ class ClientApp : public App
{
public:
ClientApp(IEventQueue *events);
~ClientApp() override;
~ClientApp() override = default;
//
// IApp overrides