aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_hidemode.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-01-24 23:41:50 +0000
committerGravatar Sadie Powell2023-01-25 00:39:27 +0000
commitaf8effe4f0876d6fa934806745712f679bd36278 (patch)
treeb0d6de94d60dc5e116faa5e14b6029fb1c527886 /src/modules/m_hidemode.cpp
parentFix using (unsigned) long instead of (s)size_t. (diff)
Replace getInt/getUInt/getFloat with type safe templated functions.
Diffstat (limited to 'src/modules/m_hidemode.cpp')
-rw-r--r--src/modules/m_hidemode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_hidemode.cpp b/src/modules/m_hidemode.cpp
index c01060580..d858b82e5 100644
--- a/src/modules/m_hidemode.cpp
+++ b/src/modules/m_hidemode.cpp
@@ -27,11 +27,11 @@ namespace
{
class Settings final
{
- typedef insp::flat_map<std::string, unsigned int> RanksToSeeMap;
+ typedef insp::flat_map<std::string, ModeHandler::Rank> RanksToSeeMap;
RanksToSeeMap rankstosee;
public:
- unsigned int GetRequiredRank(const ModeHandler& mh) const
+ ModeHandler::Rank GetRequiredRank(const ModeHandler& mh) const
{
RanksToSeeMap::const_iterator it = rankstosee.find(mh.name);
if (it != rankstosee.end())
@@ -49,7 +49,7 @@ public:
if (modename.empty())
throw ModuleException(mod, "<hidemode:mode> is empty at " + tag->source.str());
- unsigned long rank = tag->getUInt("rank", 0);
+ ModeHandler::Rank rank = tag->getNum<ModeHandler::Rank>("rank", 0);
if (!rank)
throw ModuleException(mod, "<hidemode:rank> must be greater than 0 at " + tag->source.str());