summaryrefslogtreecommitdiff
path: root/src/modules/m_restrictchans.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-12-15 17:48:52 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-12-15 17:48:52 +0100
commit7010a92426d2c3ab0cea5ba0d36a04bc6b52349f (patch)
treeaa429d64a117ac66ee934a618dc68ce270ff4df5 /src/modules/m_restrictchans.cpp
parent3eed53a5bb3b8460c6732237f690fe623d70f167 (diff)
Change type of some associative containers to their flat versions, including Extensible storage
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