diff options
author | Adam <Adam@anope.org> | 2010-07-29 18:38:56 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-29 18:38:56 -0400 |
commit | cc649031792af1e94c7701decd708aba4091d708 (patch) | |
tree | ee936f487cbae10f782bd81a50c058f5d2c36c83 /include/extensible.h | |
parent | 04200cc8382519c8ea18d214002bc0f063be7d3c (diff) |
Rewrote the hashing systems to properly handle the new Anope::strings which we have everywhere.
Diffstat (limited to 'include/extensible.h')
-rw-r--r-- | include/extensible.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/extensible.h b/include/extensible.h index 5ab32c6eb..ffdd395ee 100644 --- a/include/extensible.h +++ b/include/extensible.h @@ -60,7 +60,7 @@ template<typename T> class ExtensibleItemPointerArray : public ExtensibleItemBas class CoreExport Extensible { private: - typedef std::map<Anope::string, ExtensibleItemBase *, hash_compare_std_string> extensible_map; + typedef std::map<Anope::string, ExtensibleItemBase *> extensible_map; extensible_map Extension_Items; public: |