(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style

This commit is contained in:
rubidium
2011-12-19 17:48:04 +00:00
parent eaadd215be
commit df16ebd730
42 changed files with 74 additions and 74 deletions

View File

@@ -47,7 +47,7 @@ enum CargoClass {
CC_REFRIGERATED = 1 << 7, ///< Refrigerated cargo (Food, Fruit)
CC_HAZARDOUS = 1 << 8, ///< Hazardous cargo (Nuclear Fuel, Explosives, etc.)
CC_COVERED = 1 << 9, ///< Covered/Sheltered Freight (Transporation in Box Vans, Silo Wagons, etc.)
CC_SPECIAL = 1 << 15 ///< Special bit used for livery refit tricks instead of normal cargoes.
CC_SPECIAL = 1 << 15, ///< Special bit used for livery refit tricks instead of normal cargoes.
};
static const byte INVALID_CARGO = 0xFF; ///< Constant representing invalid cargo