From 675d35cd4637c40a827eee41a32a0ed3e49b66f0 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 8 Sep 2012 17:02:11 +0000 Subject: 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 --- source/BlockID.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/BlockID.cpp') diff --git a/source/BlockID.cpp b/source/BlockID.cpp index b1d00d391..81be6df96 100644 --- a/source/BlockID.cpp +++ b/source/BlockID.cpp @@ -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); } -- cgit v1.2.3