blob: 3314c6ec2c4a0f5403ad87c8dcc9c5ef7097a706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/src/AIEcho.cpp b/src/AIEcho.cpp
index 77d9f63..0e5f59e 100644
--- a/src/AIEcho.cpp
+++ b/src/AIEcho.cpp
@@ -4387,7 +4387,7 @@ bool enemy_building_iterator::operator!=(const enemy_building_iterator& rhs) con
{
if(is_end && rhs.is_end)
return false;
- return is_end!=rhs.is_end || team!=rhs.team || building_type!=rhs.building_type || level!=rhs.level || construction_site!=rhs.construction_site;
+ return bool {is_end!=rhs.is_end || team!=rhs.team || building_type!=rhs.building_type || level!=rhs.level || construction_site!=rhs.construction_site};
}
|