diff options
| author | 2014-01-04 19:43:04 +0100 | |
|---|---|---|
| committer | 2014-01-04 19:43:04 +0100 | |
| commit | a500ec70bb82151c8fcf7443b4645640233952e8 (patch) | |
| tree | e3068140d44bed3c8e35a0d24846bc40dcb14330 /src/modules/m_spanningtree/protocolinterface.h | |
| parent | Add functor that does strict weak ordering based on national_case_insensitive... (diff) | |
Change type of snomask parameter to char in ProtocolInterface::SendSNONotice()
Diffstat (limited to 'src/modules/m_spanningtree/protocolinterface.h')
| -rw-r--r-- | src/modules/m_spanningtree/protocolinterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/protocolinterface.h b/src/modules/m_spanningtree/protocolinterface.h index 8b9eeb6a8..745a0c3cc 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(const std::string& key, const std::string& data) CXX11_OVERRIDE; void SendTopic(Channel* channel, std::string &topic); void SendMode(User* source, User* usertarget, Channel* chantarget, const parameterlist& modedata, const std::vector<TranslateType>& types); - void SendSNONotice(const std::string &snomask, const std::string &text); + void SendSNONotice(char snomask, const std::string& text) CXX11_OVERRIDE; void PushToClient(User* target, const std::string &rawline); void SendMessage(Channel* target, char status, const std::string& text, MessageType msgtype); void SendMessage(User* target, const std::string& text, MessageType msgtype); |
