mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-31 02:19:09 +00:00
Codechange: Replace FOR_ALL_DEPOTS with range-based for loops
This commit is contained in:
@@ -28,9 +28,7 @@
|
||||
*/
|
||||
static bool IsUniqueDepotName(const char *name)
|
||||
{
|
||||
const Depot *d;
|
||||
|
||||
FOR_ALL_DEPOTS(d) {
|
||||
for (const Depot *d : Depot::Iterate()) {
|
||||
if (d->name != nullptr && strcmp(d->name, name) == 0) return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user