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:
parent
fbefff45b1
commit
675d35cd46
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user