From 3f331656b295a822dca57cee7f20f280a12bf4d9 Mon Sep 17 00:00:00 2001 From: pippijn Date: Thu, 12 Jun 2008 21:34:02 +0000 Subject: fixed git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9901 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/hashcomp.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'include') 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 -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 -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(); } -- cgit v1.2.3