aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_restrictchans.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-12-19 15:24:02 +0100
committerGravatar Attila Molnar2014-12-19 15:24:02 +0100
commitc44433dad279aa8ad95fc936ce5d3c671fbf9aa3 (patch)
treeea03fa09e688a36f8e75f137954e60b762404b2a /src/modules/m_restrictchans.cpp
parentMerge branch 'master+serverlimits' (diff)
parentChange type of some associative containers to their flat versions, including ... (diff)
Merge branch 'master+flatmap'
Diffstat (limited to 'src/modules/m_restrictchans.cpp')
-rw-r--r--src/modules/m_restrictchans.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_restrictchans.cpp b/src/modules/m_restrictchans.cpp
index b619ee448..9e660e8ed 100644
--- a/src/modules/m_restrictchans.cpp
+++ b/src/modules/m_restrictchans.cpp
@@ -24,7 +24,7 @@
class ModuleRestrictChans : public Module
{
- std::set<std::string, irc::insensitive_swo> allowchans;
+ insp::flat_set<std::string, irc::insensitive_swo> allowchans;
public:
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE