summaryrefslogtreecommitdiff
path: root/src/helpers.hpp
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2007-02-23 21:36:43 +0000
committerKUDr <kudr@openttd.org>2007-02-23 21:36:43 +0000
commit9cdf6fdc7e9b5290866074deb828dc2ec2e183a5 (patch)
treeeb5b843a8459416158bbe57c9ccd0a2512aacbd4 /src/helpers.hpp
parentf3d5fda36cb769651e47cd7a0ad07e6eca2fbb32 (diff)
downloadopenttd-9cdf6fdc7e9b5290866074deb828dc2ec2e183a5.tar.xz
(svn r8867) -Fix(r8866): revert yapf_costrail.hpp commited by mistake, helpers.hpp had wrong line ending
Diffstat (limited to 'src/helpers.hpp')
-rw-r--r--src/helpers.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/helpers.hpp b/src/helpers.hpp
index 3682033e9..d0071ae0b 100644
--- a/src/helpers.hpp
+++ b/src/helpers.hpp
@@ -81,10 +81,10 @@ template <typename T> static inline T delta(T a, T b) { return a < b ? b - a : a
/** Informative template class exposing basic enumeration properties used by several
* other templates below. Here we have only forward declaration. For each enum type
* we will create specialization derived from MakeEnumPropsT<>.
- * i.e.:
- * template <> struct EnumPropsT<Track> : MakeEnumPropsT<Track, byte, TRACK_BEGIN, TRACK_END, INVALID_TRACK> {};
- * followed by:
- * typedef TinyEnumT<Track> TrackByte;
+ * i.e.:
+ * template <> struct EnumPropsT<Track> : MakeEnumPropsT<Track, byte, TRACK_BEGIN, TRACK_END, INVALID_TRACK> {};
+ * followed by:
+ * typedef TinyEnumT<Track> TrackByte;
*/
template <typename Tenum_t> struct EnumPropsT;