diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-08-22 17:03:59 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2016-08-22 17:03:59 +0200 |
commit | 78b6ad984b846de7367e3d6042f0779906d5ab70 (patch) | |
tree | c970e3359fc521080196ac4504475260a75db02d /include/hashcomp.h | |
parent | dde2739382ddb9c512232c0d62bafa84cb0f75ab (diff) |
Remove now unused assign() functions
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r-- | include/hashcomp.h | 8 |
1 files changed, 0 insertions, 8 deletions
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(); } |