1
0

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
This commit is contained in:
madmaxoft@gmail.com 2012-09-08 17:02:11 +00:00
parent fbefff45b1
commit 675d35cd46

View File

@ -29,7 +29,7 @@ class cBlockIDMap
// Making the map case-insensitive: // Making the map case-insensitive:
struct Comparator 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); return (NoCaseCompare(a_Item1, a_Item2) > 0);
} }