chore: ServerApp, use default for deconstructor
This commit is contained in:
@ -80,10 +80,6 @@ ServerApp::ServerApp(IEventQueue *events)
|
||||
{
|
||||
}
|
||||
|
||||
ServerApp::~ServerApp()
|
||||
{
|
||||
}
|
||||
|
||||
void ServerApp::parseArgs(int argc, const char *const *argv)
|
||||
{
|
||||
|
||||
|
||||
@ -46,7 +46,7 @@ class ServerApp : public App
|
||||
|
||||
public:
|
||||
ServerApp(IEventQueue *events);
|
||||
~ServerApp() override;
|
||||
~ServerApp() override = default;
|
||||
|
||||
//
|
||||
// IApp overrides
|
||||
|
||||
Reference in New Issue
Block a user