mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
Fix NodeComparer::operator() to follow strict weak ordering rules
This fixes annoying assertion failures in MSVC builds
This commit is contained in:
parent
2f305cc68d
commit
e9e311f142
@ -177,7 +177,7 @@ private:
|
||||
{
|
||||
if(rhs->turns > lhs->turns)
|
||||
return false;
|
||||
else if(rhs->turns == lhs->turns && rhs->moveRemains < lhs->moveRemains)
|
||||
else if(rhs->turns == lhs->turns && rhs->moveRemains <= lhs->moveRemains)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user