summaryrefslogtreecommitdiff
path: root/src/yapf/yapf_base.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_base.hpp
parent0682c1c46cce7b74231486a0b8507e6e7a9b4128 (diff)
downloadopenttd-f0de54bc10d158bbb1ae58b628c0896a56880540.tar.xz
(svn r15609) -Fix: Code style...
Diffstat (limited to 'src/yapf/yapf_base.hpp')
-rw-r--r--src/yapf/yapf_base.hpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/yapf/yapf_base.hpp b/src/yapf/yapf_base.hpp
index eb134b4a1..4975c95de 100644
--- a/src/yapf/yapf_base.hpp
+++ b/src/yapf/yapf_base.hpp
@@ -88,7 +88,10 @@ public:
protected:
/// to access inherited path finder
- FORCEINLINE Tpf& Yapf() {return *static_cast<Tpf*>(this);}
+ FORCEINLINE Tpf& Yapf()
+ {
+ return *static_cast<Tpf*>(this);
+ }
public:
/// return current settings (can be custom - company based - but later)
@@ -118,12 +121,14 @@ public:
while (true) {
m_num_steps++;
Node *n = m_nodes.GetBestOpenNode();
- if (n == NULL)
+ if (n == NULL) {
break;
+ }
// if the best open node was worse than the best path found, we can finish
- if (m_pBestDestNode != NULL && m_pBestDestNode->GetCost() < n->GetCostEstimate())
+ if (m_pBestDestNode != NULL && m_pBestDestNode->GetCost() < n->GetCostEstimate()) {
break;
+ }
Yapf().PfFollowNode(*n);
if (m_max_search_nodes == 0 || m_nodes.ClosedCount() < m_max_search_nodes) {
@@ -281,7 +286,10 @@ public:
m_nodes.InsertOpenNode(n);
}
- const Vehicle * GetVehicle() const {return m_veh;}
+ const Vehicle * GetVehicle() const
+ {
+ return m_veh;
+ }
void DumpBase(DumpTarget &dmp) const
{