summaryrefslogtreecommitdiff
path: root/src/signal_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
committerrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
commitdf16ebd7301a989c813c26ab2e21163d361ee236 (patch)
treec74b8a1f965a17c3ac054290ae8d918d88ad1e52 /src/signal_type.h
parenteaadd215be7a4594bd37504935a821f8cf68c984 (diff)
downloadopenttd-df16ebd7301a989c813c26ab2e21163d361ee236.tar.xz
(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style
Diffstat (limited to 'src/signal_type.h')
-rw-r--r--src/signal_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/signal_type.h b/src/signal_type.h
index 339ce86db..ec1630db1 100644
--- a/src/signal_type.h
+++ b/src/signal_type.h
@@ -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> {};