diff options
| author | 2026-03-26 22:52:31 +0000 | |
|---|---|---|
| committer | 2026-03-26 22:52:31 +0000 | |
| commit | 5c9b23907a3cbffdcf940582afa2e9805f99e1a8 (patch) | |
| tree | 9a33e7d4cf781ae94966985560a5be40d95ef6be /modules/spanningtree/protocolinterface.cpp | |
| parent | Switch typedefs to using statements. (diff) | |
Move CUList to be declared inside User.
Diffstat (limited to 'modules/spanningtree/protocolinterface.cpp')
| -rw-r--r-- | modules/spanningtree/protocolinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/spanningtree/protocolinterface.cpp b/modules/spanningtree/protocolinterface.cpp index 1b21ad575..5ea4c6429 100644 --- a/modules/spanningtree/protocolinterface.cpp +++ b/modules/spanningtree/protocolinterface.cpp @@ -103,7 +103,7 @@ void SpanningTreeProtocolInterface::SendSNONotice(char snomask, const std::strin void SpanningTreeProtocolInterface::SendMessage(const Channel* target, char status, const std::string& text, MessageType msgtype) { const char* cmd = (msgtype == MessageType::PRIVMSG ? "PRIVMSG" : "NOTICE"); - CUList exempt_list; + User::List exempt_list; ClientProtocol::TagMap tags; Utils->SendChannelMessage(ServerInstance->FakeClient, target, text, status, tags, exempt_list, cmd); } |
