summaryrefslogtreecommitdiff
path: root/src/console_cmds.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2019-12-14 17:22:38 +0100
committerNiels Martin Hansen <nielsm@indvikleren.dk>2019-12-21 20:13:03 +0100
commit3a14cea068d130e11b5d9dde11d4451dd7dec453 (patch)
tree7afd5a1160872aeba8a630c2915a8168cbc483dd /src/console_cmds.cpp
parent68f22134cb35267d6fa01134a385d3854fda1787 (diff)
downloadopenttd-3a14cea068d130e11b5d9dde11d4451dd7dec453.tar.xz
Codechange: Replace FOR_ALL_COMPANIES with range-based for loops
Diffstat (limited to 'src/console_cmds.cpp')
-rw-r--r--src/console_cmds.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp
index a1a155a82..f4d0626a5 100644
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -1142,9 +1142,8 @@ DEF_CONSOLE_CMD(ConStartAI)
}
int n = 0;
- Company *c;
/* Find the next free slot */
- FOR_ALL_COMPANIES(c) {
+ for (const Company *c : Company::Iterate()) {
if (c->index != n) break;
n++;
}
@@ -1535,8 +1534,7 @@ DEF_CONSOLE_CMD(ConCompanies)
return true;
}
- Company *c;
- FOR_ALL_COMPANIES(c) {
+ for (const Company *c : Company::Iterate()) {
/* Grab the company name */
char company_name[512];
SetDParam(0, c->index);