modernize: Use '= default' instead of empty ctor/dtor bodies
[quassel.git] / src / core / coreauthhandler.h
index 1b4e6b9..e26e94c 100644 (file)
@@ -39,9 +39,9 @@ signals:
 private:
     using AuthHandler::handle;
 
-    void handle(const Protocol::RegisterClient &msg);
-    void handle(const Protocol::SetupData &msg);
-    void handle(const Protocol::Login &msg);
+    void handle(const Protocol::RegisterClient &msg) override;
+    void handle(const Protocol::SetupData &msg) override;
+    void handle(const Protocol::Login &msg) override;
 
     void setPeer(RemotePeer *peer);
     void startSsl();