(svn r13205) -Codechange: Remove unnecessary code-style-buggering-up macro.

This commit is contained in:
peter1138
2008-05-21 12:06:05 +00:00
parent 621e205f74
commit 510c0acb4a
4 changed files with 17 additions and 27 deletions

View File

@@ -1953,10 +1953,9 @@ int WhoCanServiceIndustry(Industry* ind)
bool c_accepts = false;
bool c_produces = false;
if (v->type == VEH_TRAIN && IsFrontEngine(v)) {
const Vehicle *u = v;
BEGIN_ENUM_WAGONS(u)
for (const Vehicle *u = v; u != NULL; u = u->Next()) {
CanCargoServiceIndustry(u->cargo_type, ind, &c_accepts, &c_produces);
END_ENUM_WAGONS(u)
}
} else if (v->type == VEH_ROAD || v->type == VEH_SHIP || v->type == VEH_AIRCRAFT) {
CanCargoServiceIndustry(v->cargo_type, ind, &c_accepts, &c_produces);
} else {