From: Attila Molnar Date: Mon, 22 Aug 2016 15:03:59 +0000 (+0200) Subject: Remove now unused assign() functions X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=78b6ad984b846de7367e3d6042f0779906d5ab70;p=user%2Fhenk%2Fcode%2Finspircd.git Remove now unused assign() functions --- diff --git a/include/hashcomp.h b/include/hashcomp.h index aa204ace6..464fb16de 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -416,11 +416,3 @@ inline bool operator!= (const std::string& leftval, const irc::string& rightval) { return !(leftval.c_str() == rightval); } - -/** Assign an irc::string to a std::string. - */ -inline std::string assign(const irc::string &other) { return other.c_str(); } - -/** Assign a std::string to an irc::string. - */ -inline irc::string assign(const std::string &other) { return other.c_str(); }