Another fix for the case-sensitiveness. WTF, STL allows different signatures for Debug and Release builds?

git-svn-id: http://mc-server.googlecode.com/svn/trunk@849 0a769ca7-a7f5-676a-18bf-c427514a06d6
master
madmaxoft@gmail.com 2012-09-08 17:02:11 +00:00
parent fbefff45b1
commit 675d35cd46
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class cBlockIDMap
// Making the map case-insensitive:
struct Comparator
{
bool operator()(const AString & a_Item1, const AString & a_Item2)
bool operator()(const AString & a_Item1, const AString & a_Item2) const
{
return (NoCaseCompare(a_Item1, a_Item2) > 0);
}