Add override keyword to functions

This commit is contained in:
Chocobo1
2019-07-18 15:10:14 +08:00
parent 45eba9ec31
commit 4a90716843
10 changed files with 16 additions and 16 deletions

View File

@@ -56,7 +56,7 @@ namespace Http
void dropTimedOutConnection();
private:
void incomingConnection(qintptr socketDescriptor);
void incomingConnection(qintptr socketDescriptor) override;
void removeConnection(Connection *connection);
IRequestHandler *m_requestHandler;