chore: ServerApp, use default for deconstructor

This commit is contained in:
sithlord48
2025-05-01 11:02:31 -04:00
committed by Nick Bolton
parent 297b781578
commit c99767c8b7
2 changed files with 1 additions and 5 deletions

View File

@ -80,10 +80,6 @@ ServerApp::ServerApp(IEventQueue *events)
{
}
ServerApp::~ServerApp()
{
}
void ServerApp::parseArgs(int argc, const char *const *argv)
{

View File

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