summaryrefslogtreecommitdiff
path: root/src/cargopacket.h
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2019-12-15 17:37:35 +0100
committerNiels Martin Hansen <nielsm@indvikleren.dk>2019-12-21 20:13:03 +0100
commit5fce5fa300318db4e87849c2269a0e013d6f89e1 (patch)
treee2c5128a259e6e7ce70144cb7cb86929d4d35f05 /src/cargopacket.h
parent60e3cf8aff9a7b98a0365ab734bebf70607160a1 (diff)
downloadopenttd-5fce5fa300318db4e87849c2269a0e013d6f89e1.tar.xz
Codechange: Replace FOR_ALL_CARGOPACKETS with range-based for loops
Diffstat (limited to 'src/cargopacket.h')
-rw-r--r--src/cargopacket.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/cargopacket.h b/src/cargopacket.h
index a38d46a22..c058bafdb 100644
--- a/src/cargopacket.h
+++ b/src/cargopacket.h
@@ -193,19 +193,6 @@ public:
};
/**
- * Iterate over all _valid_ cargo packets from the given start.
- * @param var Variable used as "iterator".
- * @param start Cargo packet ID of the first packet to iterate over.
- */
-#define FOR_ALL_CARGOPACKETS_FROM(var, start) FOR_ALL_ITEMS_FROM(CargoPacket, cargopacket_index, var, start)
-
-/**
- * Iterate over all _valid_ cargo packets from the begin of the pool.
- * @param var Variable used as "iterator".
- */
-#define FOR_ALL_CARGOPACKETS(var) FOR_ALL_CARGOPACKETS_FROM(var, 0)
-
-/**
* Simple collection class for a list of cargo packets.
* @tparam Tinst Actual instantiation of this cargo list.
*/