diff options
| author | 2006-02-19 23:21:41 +0000 | |
|---|---|---|
| committer | 2006-02-19 23:21:41 +0000 | |
| commit | bb7ff3b7b6defcfb950b25c632d68425afd0492a (patch) | |
| tree | 2468025368feb32966fabe8836b53180bb29ada3 /src/hashcomp.cpp | |
| 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 'src/hashcomp.cpp')
| -rw-r--r-- | src/hashcomp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 3c29a1910..e94813420 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -159,7 +159,7 @@ bool operator== (std::string& leftval, irc::string& rightval) bool operator== (irc::string& leftval, std::string& rightval) { - return (rightval == irc::string(leftval.c_str())); + return (rightval == std::string(leftval.c_str())); } const char* irc::irc_char_traits::find(const char* s1, int n, char c) |
