diff options
| author | 2017-07-12 14:41:52 +0100 | |
|---|---|---|
| committer | 2017-07-12 14:41:52 +0100 | |
| commit | d1df2bce56275e1297d94d82d4dbef6f6cf582b6 (patch) | |
| tree | 3b968cb8a2b3b90b74ae0633e2a4a7fa04782d8e /src/modules/m_spanningtree/protocolinterface.h | |
| parent | Merge pull request #1337 from SaberUK/master+merge (diff) | |
| download | inspircd++-d1df2bce56275e1297d94d82d4dbef6f6cf582b6.tar.gz inspircd++-d1df2bce56275e1297d94d82d4dbef6f6cf582b6.tar.bz2 inspircd++-d1df2bce56275e1297d94d82d4dbef6f6cf582b6.zip | |
Add CXX11_OVERRIDE to overridden members that lack it.
This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
Diffstat (limited to 'src/modules/m_spanningtree/protocolinterface.h')
| -rw-r--r-- | src/modules/m_spanningtree/protocolinterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_spanningtree/protocolinterface.h b/src/modules/m_spanningtree/protocolinterface.h index e7fed5475..b0609005c 100644 --- a/src/modules/m_spanningtree/protocolinterface.h +++ b/src/modules/m_spanningtree/protocolinterface.h @@ -37,7 +37,7 @@ class SpanningTreeProtocolInterface : public ProtocolInterface void SendMetaData(Channel* chan, const std::string& key, const std::string& data) CXX11_OVERRIDE; void SendMetaData(const std::string& key, const std::string& data) CXX11_OVERRIDE; void SendSNONotice(char snomask, const std::string& text) CXX11_OVERRIDE; - void SendMessage(Channel* target, char status, const std::string& text, MessageType msgtype); - void SendMessage(User* target, const std::string& text, MessageType msgtype); - void GetServerList(ServerList& sl); + void SendMessage(Channel* target, char status, const std::string& text, MessageType msgtype) CXX11_OVERRIDE; + void SendMessage(User* target, const std::string& text, MessageType msgtype) CXX11_OVERRIDE; + void GetServerList(ServerList& sl) CXX11_OVERRIDE; }; |
