mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-13 02:52:37 +00:00
Codechange: Replace FOR_ALL_CARGO_PAYMENTS with range-based for loops
This commit is contained in:
parent
fa9769f81a
commit
1c92ba8ebe
@ -47,17 +47,4 @@ struct CargoPayment : CargoPaymentPool::PoolItem<&_cargo_payment_pool> {
|
||||
void SetCargo(CargoID ct) { this->ct = ct; }
|
||||
};
|
||||
|
||||
/**
|
||||
* Iterate over all cargo payments from a given start position.
|
||||
* @param var The variable used for iterating.
|
||||
* @param start The start of the iteration.
|
||||
*/
|
||||
#define FOR_ALL_CARGO_PAYMENTS_FROM(var, start) FOR_ALL_ITEMS_FROM(CargoPayment, cargo_payment_index, var, start)
|
||||
|
||||
/**
|
||||
* Iterate over all cargo payments.
|
||||
* @param var The variable used for iterating.
|
||||
*/
|
||||
#define FOR_ALL_CARGO_PAYMENTS(var) FOR_ALL_CARGO_PAYMENTS_FROM(var, 0)
|
||||
|
||||
#endif /* ECONOMY_BASE_H */
|
||||
|
@ -822,8 +822,7 @@ bool AfterLoadGame()
|
||||
}
|
||||
|
||||
/* Fix the cache for cargo payments. */
|
||||
CargoPayment *cp;
|
||||
FOR_ALL_CARGO_PAYMENTS(cp) {
|
||||
for (CargoPayment *cp : CargoPayment::Iterate()) {
|
||||
cp->front->cargo_payment = cp;
|
||||
cp->current_station = cp->front->last_station_visited;
|
||||
}
|
||||
|
@ -72,8 +72,7 @@ static const SaveLoad _cargopayment_desc[] = {
|
||||
|
||||
static void Save_CAPY()
|
||||
{
|
||||
CargoPayment *cp;
|
||||
FOR_ALL_CARGO_PAYMENTS(cp) {
|
||||
for (CargoPayment *cp : CargoPayment::Iterate()) {
|
||||
SlSetArrayIndex(cp->index);
|
||||
SlObject(cp, _cargopayment_desc);
|
||||
}
|
||||
@ -91,8 +90,7 @@ static void Load_CAPY()
|
||||
|
||||
static void Ptrs_CAPY()
|
||||
{
|
||||
CargoPayment *cp;
|
||||
FOR_ALL_CARGO_PAYMENTS(cp) {
|
||||
for (CargoPayment *cp : CargoPayment::Iterate()) {
|
||||
SlObject(cp, _cargopayment_desc);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user