diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-12-15 17:48:52 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-12-15 17:48:52 +0100 |
commit | 7010a92426d2c3ab0cea5ba0d36a04bc6b52349f (patch) | |
tree | aa429d64a117ac66ee934a618dc68ce270ff4df5 /include/mode.h | |
parent | 3eed53a5bb3b8460c6732237f690fe623d70f167 (diff) |
Change type of some associative containers to their flat versions, including Extensible storage
Diffstat (limited to 'include/mode.h')
-rw-r--r-- | include/mode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mode.h b/include/mode.h index 1c2bd8f44..eebfbedd6 100644 --- a/include/mode.h +++ b/include/mode.h @@ -490,7 +490,7 @@ class CoreExport ModeParser : public fakederef<ModeParser> private: /** Type of the container that maps mode names to ModeWatchers */ - typedef std::multimap<std::string, ModeWatcher*> ModeWatcherMap; + typedef insp::flat_multimap<std::string, ModeWatcher*> ModeWatcherMap; /** Last item in the ModeType enum */ |