diff options
| author | 2014-12-19 15:24:02 +0100 | |
|---|---|---|
| committer | 2014-12-19 15:24:02 +0100 | |
| commit | c44433dad279aa8ad95fc936ce5d3c671fbf9aa3 (patch) | |
| tree | ea03fa09e688a36f8e75f137954e60b762404b2a /src/modules/m_alias.cpp | |
| parent | Merge branch 'master+serverlimits' (diff) | |
| parent | Change type of some associative containers to their flat versions, including ... (diff) | |
Merge branch 'master+flatmap'
Diffstat (limited to 'src/modules/m_alias.cpp')
| -rw-r--r-- | src/modules/m_alias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 2d4bdded3..20d3f5c45 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -63,7 +63,7 @@ class ModuleAlias : public Module * We can, however, use a fancy invention: the multimap. Maps a key to one or more values. * -- w00t */ - typedef std::multimap<std::string, Alias, irc::insensitive_swo> AliasMap; + typedef insp::flat_multimap<std::string, Alias, irc::insensitive_swo> AliasMap; AliasMap Aliases; |
