]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Remove now unused assign() functions
authorAttila Molnar <attilamolnar@hush.com>
Mon, 22 Aug 2016 15:03:59 +0000 (17:03 +0200)
committerAttila Molnar <attilamolnar@hush.com>
Mon, 22 Aug 2016 15:03:59 +0000 (17:03 +0200)
include/hashcomp.h

index aa204ace60fffb164a493986578b7331766c152a..464fb16deddb36513fcd74fc4b0dd9c5b5be6d11 100644 (file)
@@ -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(); }