summaryrefslogtreecommitdiff
path: root/src/yapf/yapf_common.hpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2009-03-04 08:02:16 +0000
committerpeter1138 <peter1138@openttd.org>2009-03-04 08:02:16 +0000
commitf0de54bc10d158bbb1ae58b628c0896a56880540 (patch)
treec01ea5ac1459d5c07f3332f8887c8df85fe37e54 /src/yapf/yapf_common.hpp
parent0682c1c46cce7b74231486a0b8507e6e7a9b4128 (diff)
downloadopenttd-f0de54bc10d158bbb1ae58b628c0896a56880540.tar.xz
(svn r15609) -Fix: Code style...
Diffstat (limited to 'src/yapf/yapf_common.hpp')
-rw-r--r--src/yapf/yapf_common.hpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/yapf/yapf_common.hpp b/src/yapf/yapf_common.hpp
index b13d76fe5..b52690f2a 100644
--- a/src/yapf/yapf_common.hpp
+++ b/src/yapf/yapf_common.hpp
@@ -19,7 +19,10 @@ protected:
TrackdirBits m_orgTrackdirs; ///< origin trackdir mask
/// to access inherited path finder
- FORCEINLINE Tpf& Yapf() {return *static_cast<Tpf*>(this);}
+ FORCEINLINE Tpf& Yapf()
+ {
+ return *static_cast<Tpf*>(this);
+ }
public:
/// Set origin tile / trackdir mask
@@ -60,7 +63,10 @@ protected:
bool m_treat_first_red_two_way_signal_as_eol; ///< in some cases (leaving station) we need to handle first two-way signal differently
/// to access inherited path finder
- FORCEINLINE Tpf& Yapf() {return *static_cast<Tpf*>(this);}
+ FORCEINLINE Tpf& Yapf()
+ {
+ return *static_cast<Tpf*>(this);
+ }
public:
/// set origin (tiles, trackdirs, etc.)
@@ -120,7 +126,10 @@ public:
protected:
/// to access inherited path finder
- Tpf& Yapf() {return *static_cast<Tpf*>(this);}
+ Tpf& Yapf()
+ {
+ return *static_cast<Tpf*>(this);
+ }
public:
/// Called by YAPF to detect if node ends in the desired destination