1
0

Fixed missing overrides and added a ignore flag for reserved macro for clang version 3.6 and higher.

This commit is contained in:
Lukas Pioch
2015-05-23 13:56:08 +02:00
parent 0daa6a92ea
commit e30b2ed487
19 changed files with 46 additions and 42 deletions

View File

@@ -72,7 +72,7 @@ class cServerListenCallbacks:
virtual void OnAccepted(cTCPLink & a_Link) override {}
virtual void OnError(int a_ErrorCode, const AString & a_ErrorMsg)
virtual void OnError(int a_ErrorCode, const AString & a_ErrorMsg) override
{
LOGWARNING("Cannot listen on port %d: %d (%s).", m_Port, a_ErrorCode, a_ErrorMsg.c_str());
}