Fix c++17 compilation

This commit is contained in:
dP
2021-04-01 14:14:20 +03:00
parent 55557c0529
commit 6659107625

View File

@@ -94,7 +94,7 @@ public:
class TileIndexDiffCCompare{
public:
bool operator()(const TileIndexDiffC &a, const TileIndexDiffC &b) {
bool operator()(const TileIndexDiffC &a, const TileIndexDiffC &b) const {
if (a.x < b.x) return true;
if (a.x == b.x && a.y < b.y) return true;
return false;