diff options
author | Adam <Adam@anope.org> | 2016-10-17 18:33:55 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-17 18:33:55 -0400 |
commit | 22d166fd4e98b67cac7103b48801fb95a0179f01 (patch) | |
tree | 300b00bd52c5d3a26978bfe23bbdc2adc9c0fa26 /include/anope.h | |
parent | 1ba242179fee46583098f48421af39ce9a8985a1 (diff) |
Address casemapping issues in sqlite/mysql
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/anope.h b/include/anope.h index 49e7c7ddc..dbaebd573 100644 --- a/include/anope.h +++ b/include/anope.h @@ -345,6 +345,8 @@ namespace Anope bool operator()(const string &s1, const string &s2) const; }; + extern Anope::string transform(const Anope::string &); + template<typename T> using map = std::map<string, T, ci::less>; template<typename T> using multimap = std::multimap<string, T, ci::less>; template<typename T> using hash_map = std::unordered_map<string, T, hash_ci, compare_ci>; |