summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/hashcomp.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h
index 24d0af600..660c8e21b 100644
--- a/include/hashcomp.h
+++ b/include/hashcomp.h
@@ -633,18 +633,6 @@ static inline bool operator != (std::string const &lhs, char const (&rhs)[N])
return !(lhs == rhs);
}
-template<std::size_t N>
-static inline bool operator == (irc::string const &lhs, char const (&rhs)[N])
-{
- return lhs.length() == N - 1 && !std::memcmp(lhs.data(), rhs, N - 1);
-}
-
-template<std::size_t N>
-static inline bool operator != (irc::string const &lhs, char const (&rhs)[N])
-{
- return !(lhs == rhs);
-}
-
/** Assign an irc::string to a std::string.
*/
inline std::string assign(const irc::string &other) { return other.c_str(); }