aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_hostchange.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-09-30 20:21:59 +0100
committerGravatar Sadie Powell2022-09-30 20:21:59 +0100
commite4efd41a99e1237b61336555af0398ef5f634a4d (patch)
tree33d556a2347e0e1531546cf0d661b40512c3b620 /src/modules/m_hostchange.cpp
parentUse auto instead of type names where the type is obvious. (diff)
Use a global typedef for representing a character set.
Diffstat (limited to 'src/modules/m_hostchange.cpp')
-rw-r--r--src/modules/m_hostchange.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_hostchange.cpp b/src/modules/m_hostchange.cpp
index 00a665b17..d6d79286c 100644
--- a/src/modules/m_hostchange.cpp
+++ b/src/modules/m_hostchange.cpp
@@ -127,7 +127,7 @@ class ModuleHostChange final
{
private:
Account::API accountapi;
- std::bitset<UCHAR_MAX + 1> hostmap;
+ CharState hostmap;
HostRules hostrules;
std::string CleanName(const std::string& name)