mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-20 04:59:11 +00:00
Codechange: Replace vehicle related FOR_ALL with range-based for loops
This commit is contained in:
@@ -1800,14 +1800,12 @@ void CheckOrders(const Vehicle *v)
|
||||
*/
|
||||
void RemoveOrderFromAllVehicles(OrderType type, DestinationID destination, bool hangar)
|
||||
{
|
||||
Vehicle *v;
|
||||
|
||||
/* Aircraft have StationIDs for depot orders and never use DepotIDs
|
||||
* This fact is handled specially below
|
||||
*/
|
||||
|
||||
/* Go through all vehicles */
|
||||
FOR_ALL_VEHICLES(v) {
|
||||
for (Vehicle *v : Vehicle::Iterate()) {
|
||||
Order *order;
|
||||
|
||||
order = &v->current_order;
|
||||
|
Reference in New Issue
Block a user