mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-09-01 10:59:12 +00:00
(svn r15404) -Cleanup [YAPF]: A tiny bit of const correctness.
This commit is contained in:
@@ -61,8 +61,8 @@ struct CYapfNodeT {
|
||||
FORCEINLINE TileIndex GetTile() const {return m_key.m_tile;}
|
||||
FORCEINLINE Trackdir GetTrackdir() const {return m_key.m_td;}
|
||||
FORCEINLINE const Tkey_& GetKey() const {return m_key;}
|
||||
FORCEINLINE int GetCost() {return m_cost;}
|
||||
FORCEINLINE int GetCostEstimate() {return m_estimate;}
|
||||
FORCEINLINE int GetCost() const {return m_cost;}
|
||||
FORCEINLINE int GetCostEstimate() const {return m_estimate;}
|
||||
FORCEINLINE bool operator < (const Node& other) const {return m_estimate < other.m_estimate;}
|
||||
|
||||
void Dump(DumpTarget &dmp) const
|
||||
|
Reference in New Issue
Block a user