summaryrefslogtreecommitdiff
path: root/src/date.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2019-12-16 19:28:46 +0100
committerNiels Martin Hansen <nielsm@indvikleren.dk>2019-12-21 20:13:03 +0100
commit09fa39c5b59d88a076a244cf1623a53b0ffa1434 (patch)
treec4b7006085df37a7c0b5f5a5bb3e62bcc53cae42 /src/date.cpp
parent00c2a98cf395d6e2a85290048e7be7a7f6ce0d04 (diff)
downloadopenttd-09fa39c5b59d88a076a244cf1623a53b0ffa1434.tar.xz
Codechange: Replace linkgraph related FOR_ALL with range-based for loops
Diffstat (limited to 'src/date.cpp')
-rw-r--r--src/date.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/date.cpp b/src/date.cpp
index 74ad76d14..778688720 100644
--- a/src/date.cpp
+++ b/src/date.cpp
@@ -210,8 +210,7 @@ static void OnNewYear()
_date -= days_this_year;
FOR_ALL_VEHICLES(v) v->date_of_last_service -= days_this_year;
- LinkGraph *lg;
- FOR_ALL_LINK_GRAPHS(lg) lg->ShiftDates(-days_this_year);
+ for (LinkGraph *lg : LinkGraph::Iterate()) lg->ShiftDates(-days_this_year);
/* Because the _date wraps here, and text-messages expire by game-days, we have to clean out
* all of them if the date is set back, else those messages will hang for ever */