diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-19 23:17:17 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-19 23:17:17 +0000 |
commit | 8942c3cd3217e5c68f01e3cb344709971921fc97 (patch) | |
tree | d79d0a444e646a352ab73d90509a64b401b141a6 /include | |
parent | f0610a1fa232346ca050b6a4757dcf09e5f043a7 (diff) |
Tweaks
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3261 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/hashcomp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 0d6bc7e6f..b8921ced2 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -140,9 +140,9 @@ std::istream& operator>>(std::istream &is, irc::string &str); * and comparison - Brain */ -std::string& operator+ (std::string& leftval, irc::string& rightval); -irc::string& operator+ (irc::string& leftval, std::string& rightval); -std::string& operator== (std::string& leftval, irc::string& rightval); -irc::string& operator== (irc::string& leftval, std::string& rightval); +std::string operator+ (std::string& leftval, irc::string& rightval); +irc::string operator+ (irc::string& leftval, std::string& rightval); +std::string operator== (std::string& leftval, irc::string& rightval); +irc::string operator== (irc::string& leftval, std::string& rightval); #endif |