Changeset - r15171:d89649ce52da
[Not reviewed]
master
0 1 0
rubidium - 14 years ago 2010-05-13 09:11:27
rubidium@openttd.org
(svn r19810) -Fix: [YAPF] Improperly formatted (global) constant
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/pathfinder/yapf/yapf_costcache.hpp
Show inline comments
 
@@ -110,9 +110,9 @@ template <class Tsegment>
 
struct CSegmentCostCacheT
 
	: public CSegmentCostCacheBase
 
{
 
	enum {c_hash_bits = 14};
 
	static const int C_HASH_BITS = 14;
 

	
 
	typedef CHashTableT<Tsegment, c_hash_bits> HashTable;
 
	typedef CHashTableT<Tsegment, C_HASH_BITS> HashTable;
 
	typedef SmallArray<Tsegment> Heap;
 
	typedef typename Tsegment::Key Key;    ///< key to hash table
 

	
0 comments (0 inline, 0 general)