Codechange: Ensure space between for/if and (.

This commit is contained in:
Peter Nelson
2023-11-09 19:23:26 +00:00
committed by Peter Nelson
parent d4008850e3
commit 938c8339d2
3 changed files with 4 additions and 4 deletions

View File

@@ -792,7 +792,7 @@ public:
if (_settings_client.gui.quick_goto && v->owner == _local_company) {
/* If there are less than 2 station, make Go To active. */
int station_orders = 0;
for(const Order *order : v->Orders()) {
for (const Order *order : v->Orders()) {
if (order->IsType(OT_GOTO_STATION)) station_orders++;
}