diff options
author | Adam <Adam@anope.org> | 2011-03-14 20:16:38 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-14 20:16:38 -0400 |
commit | ddfb16de1a61a9b80ece0ba6e5fd34326abf5f18 (patch) | |
tree | 81e29e3eebc8ae6241e6bdd6970e48a037291203 /include/anope.h | |
parent | 2555d0d6373e631ca2504826a02aaae2e82cd7a4 (diff) |
Fixed compile
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/anope.h b/include/anope.h index 1a8612241..07cd97da5 100644 --- a/include/anope.h +++ b/include/anope.h @@ -20,6 +20,9 @@ class Message; namespace Anope { + template<typename T> class map : public std::map<string, T> { }; + template<typename T> class insensitive_map : public std::map<string, T, std::less<ci::string> > { }; + /** * A wrapper string class around all the other string classes, this class will * allow us to only require one type of string everywhere that can be converted |