Fixed a ToLua warning - operator = not supported.

This commit is contained in:
madmaxoft
2014-08-03 22:04:48 +02:00
parent a24e960a89
commit 6ce61d1a6f
8 changed files with 16 additions and 8 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class cBlockIDMap
// Making the map case-insensitive:
struct Comparator
{
bool operator()(const AString & a_Item1, const AString & a_Item2) const
bool operator ()(const AString & a_Item1, const AString & a_Item2) const
{
return (NoCaseCompare(a_Item1, a_Item2) > 0);
}