(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 00fc0d45b0
commit 3d605f6488
42 changed files with 74 additions and 74 deletions

View File

@@ -20,7 +20,7 @@
/** What is the status of our acceleration? */
enum AccelStatus {
AS_ACCEL, ///< We want to go faster, if possible of course.
AS_BRAKE ///< We want to stop.
AS_BRAKE, ///< We want to stop.
};
/**
@@ -50,8 +50,8 @@ struct GroundVehicleCache {
/** Ground vehicle flags. */
enum GroundVehicleFlags {
GVF_GOINGUP_BIT = 0, ///< Vehicle is currently going uphill. (Cached track information for acceleration)
GVF_GOINGDOWN_BIT = 1, ///< Vehicle is currently going downhill. (Cached track information for acceleration)
GVF_GOINGUP_BIT = 0, ///< Vehicle is currently going uphill. (Cached track information for acceleration)
GVF_GOINGDOWN_BIT = 1, ///< Vehicle is currently going downhill. (Cached track information for acceleration)
GVF_SUPPRESS_IMPLICIT_ORDERS = 2, ///< Disable insertion and removal of automatic orders until the vehicle completes the real order.
};