summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2019-12-17 19:11:24 +0100
committerNiels Martin Hansen <nielsm@indvikleren.dk>2019-12-21 20:13:03 +0100
commitb91abd3af98cca51221210198e2c9607055c19b2 (patch)
tree5a19db5c977db576ba89d67873d59f3e10a4f00f /src/openttd.cpp
parent514565fad6d3a7e93a24b53b29eb901ef4f6a166 (diff)
downloadopenttd-b91abd3af98cca51221210198e2c9607055c19b2.tar.xz
Codechange: Replace FOR_ALL_ROADSTOPS with range-based for loops
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index 63d5bf756..c7af56be1 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -1221,8 +1221,7 @@ static void CheckCaches()
}
/* Strict checking of the road stop cache entries */
- const RoadStop *rs;
- FOR_ALL_ROADSTOPS(rs) {
+ for (const RoadStop *rs : RoadStop::Iterate()) {
if (IsStandardRoadStopTile(rs->xy)) continue;
assert(rs->GetEntry(DIAGDIR_NE) != rs->GetEntry(DIAGDIR_NW));