diff options
| author | 2006-02-19 23:21:41 +0000 | |
|---|---|---|
| committer | 2006-02-19 23:21:41 +0000 | |
| commit | bb7ff3b7b6defcfb950b25c632d68425afd0492a (patch) | |
| tree | 2468025368feb32966fabe8836b53180bb29ada3 /include | |
| parent | More tweaks (diff) | |
AIEEE fucking overloaded operators
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3263 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
| -rw-r--r-- | include/hashcomp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index b8921ced2..7ec813ad6 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -142,7 +142,7 @@ std::istream& operator>>(std::istream &is, irc::string &str); 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); +bool operator== (std::string& leftval, irc::string& rightval); +bool operator== (irc::string& leftval, std::string& rightval); #endif |
