From aa6912f1c9845386180df91b20b6ecd3b78ba4b9 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Thu, 9 Aug 2018 16:33:27 +0100 Subject: Remove the integer overloads of irc::tokenparser::GetToken(). The int overload was never used and the long overload was used in one place. --- src/modules/m_filter.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/modules') diff --git a/src/modules/m_filter.cpp b/src/modules/m_filter.cpp index c039c0455..f7d73ac4a 100644 --- a/src/modules/m_filter.cpp +++ b/src/modules/m_filter.cpp @@ -587,7 +587,10 @@ FilterResult ModuleFilter::DecodeFilter(const std::string &data) if (c != 0) throw ModuleException("Invalid flag: '" + std::string(1, c) + "'"); - tokens.GetToken(res.duration); + std::string duration; + tokens.GetToken(duration); + res.duration = ConvToInt(duration); + tokens.GetToken(res.reason); /* Hax to allow spaces in the freeform without changing the design of the irc protocol */ -- cgit v1.2.3