diff options
| author | 2019-01-23 21:45:50 +0000 | |
|---|---|---|
| committer | 2019-01-24 14:28:21 +0000 | |
| commit | cbef0241a04eafe5250b75ebb3f7ef8c32ecb260 (patch) | |
| tree | d856c8ac6db6cf2514bc5090e6b11f759d3c0290 /src/hashcomp.cpp | |
| parent | Avoid forwarding passwords to nickserv when using SASL (#1562) (diff) | |
Implement support for the extended tag space for client tags.
Diffstat (limited to 'src/hashcomp.cpp')
| -rw-r--r-- | src/hashcomp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 8febcbb5f..a51430a4b 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -193,8 +193,8 @@ size_t irc::insensitive::operator()(const std::string &s) const return t; } -irc::tokenstream::tokenstream(const std::string& msg, size_t start) - : message(msg, start) +irc::tokenstream::tokenstream(const std::string& msg, size_t start, size_t end) + : message(msg, start, end) , position(0) { } |
