diff options
| author | 2013-12-19 17:30:22 +0100 | |
|---|---|---|
| committer | 2014-01-04 19:38:20 +0100 | |
| commit | b5bc73e31026ee2087f0ceb5c7d9f99bf3c288a6 (patch) | |
| tree | c19a15d127619fe9673d004b81fb4422276d778f /include | |
| parent | Fix some Windows-related problems. (diff) | |
Add functor that does strict weak ordering based on national_case_insensitive_map
Diffstat (limited to 'include')
| -rw-r--r-- | include/hashcomp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 0bf306267..de556f393 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -114,6 +114,11 @@ namespace irc size_t CoreExport operator()(const std::string &s) const; }; + struct insensitive_swo + { + bool CoreExport operator()(const std::string& a, const std::string& b) const; + }; + /** The irc_char_traits class is used for RFC-style comparison of strings. * This class is used to implement irc::string, a case-insensitive, RFC- * comparing string class. |
