diff options
| author | 2026-03-13 22:49:48 +0000 | |
|---|---|---|
| committer | 2026-03-14 02:16:20 +0000 | |
| commit | a04212eee0716a01f5f75589d12f7578f6695270 (patch) | |
| tree | b8f6820ad17d53eea8956b547f4c96954022c59b /modules/spanningtree/treesocket2.cpp | |
| parent | Clean up the casemapping checking and comparison code. (diff) | |
Rewrite tokenstream and move to stringutils.
Diffstat (limited to 'modules/spanningtree/treesocket2.cpp')
| -rw-r--r-- | modules/spanningtree/treesocket2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/spanningtree/treesocket2.cpp b/modules/spanningtree/treesocket2.cpp index 39ca98179..ed9548707 100644 --- a/modules/spanningtree/treesocket2.cpp +++ b/modules/spanningtree/treesocket2.cpp @@ -25,6 +25,7 @@ #include "inspircd.h" +#include "stringutils.h" #include "timeutils.h" #include "main.h" @@ -44,7 +45,7 @@ void TreeSocket::Error(CommandBase::Params& params) void TreeSocket::Split(const std::string& line, std::string& tags, std::string& prefix, std::string& command, CommandBase::Params& params) { std::string token; - irc::tokenstream tokens(line); + MessageTokenizer tokens(line); if (!tokens.GetMiddle(token)) return; |
