(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

@@ -17,7 +17,7 @@
/** Variant of the signal, i.e. how does the signal look? */
enum SignalVariant {
SIG_ELECTRIC = 0, ///< Light signal
SIG_SEMAPHORE = 1 ///< Old-fashioned semaphore signal
SIG_SEMAPHORE = 1, ///< Old-fashioned semaphore signal
};
@@ -32,7 +32,7 @@ enum SignalType {
SIGTYPE_END,
SIGTYPE_LAST = SIGTYPE_PBS_ONEWAY,
SIGTYPE_LAST_NOPBS = SIGTYPE_COMBO
SIGTYPE_LAST_NOPBS = SIGTYPE_COMBO,
};
/** Helper information for extract tool. */
template <> struct EnumPropsT<SignalType> : MakeEnumPropsT<SignalType, byte, SIGTYPE_NORMAL, SIGTYPE_END, SIGTYPE_END, 3> {};