mirror of
https://github.com/anope/anope.git
synced 2026-06-26 08:56:39 +02:00
Fixed some Windows issues with hashing and sockets. This currently limits building to VS 2010, will look at 2008 later
This commit is contained in:
+1
-1
@@ -197,7 +197,7 @@ bool std::less<ci::string>::operator()(const Anope::string &s1, const Anope::str
|
||||
*/
|
||||
bool std::less<irc::string>::operator()(const Anope::string &s1, const Anope::string &s2) const
|
||||
{
|
||||
return s2.irc_str().compare(s2.irc_str()) < 0;
|
||||
return s1.irc_str().compare(s2.irc_str()) < 0;
|
||||
}
|
||||
|
||||
sepstream::sepstream(const Anope::string &source, char seperator) : tokens(source), sep(seperator)
|
||||
|
||||
Reference in New Issue
Block a user