summaryrefslogtreecommitdiff
path: root/src/pathfinder/yapf/yapf_costcache.hpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-01-16 13:52:24 +0000
committerfrosch <frosch@openttd.org>2010-01-16 13:52:24 +0000
commitc7dafb9a26e355621a8f99b5fb470ceb97ce1fd0 (patch)
tree945e6a69fed6edac8a69f8f8137cf4064932529a /src/pathfinder/yapf/yapf_costcache.hpp
parent21fff6407d8c29e383d64cb4319c4f1698b739cc (diff)
downloadopenttd-c7dafb9a26e355621a8f99b5fb470ceb97ce1fd0.tar.xz
(svn r18822) -Codechange: Rename YAPF-related container classes and their members to better fit other container classes. (skidd13)
Diffstat (limited to 'src/pathfinder/yapf/yapf_costcache.hpp')
-rw-r--r--src/pathfinder/yapf/yapf_costcache.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pathfinder/yapf/yapf_costcache.hpp b/src/pathfinder/yapf/yapf_costcache.hpp
index 810579120..13d30c119 100644
--- a/src/pathfinder/yapf/yapf_costcache.hpp
+++ b/src/pathfinder/yapf/yapf_costcache.hpp
@@ -53,7 +53,7 @@ public:
typedef typename Node::Key Key; ///< key to hash tables
typedef typename Node::CachedData CachedData;
typedef typename CachedData::Key CacheKey;
- typedef CArrayT<CachedData> LocalCache;
+ typedef SmallArray<CachedData> LocalCache;
protected:
LocalCache m_local_cache;
@@ -70,7 +70,7 @@ public:
FORCEINLINE bool PfNodeCacheFetch(Node& n)
{
CacheKey key(n.GetKey());
- Yapf().ConnectNodeToCachedData(n, *new (&m_local_cache.AddNC()) CachedData(key));
+ Yapf().ConnectNodeToCachedData(n, *new (&m_local_cache.Append()) CachedData(key));
return false;
}
@@ -113,7 +113,7 @@ struct CSegmentCostCacheT
enum {c_hash_bits = 14};
typedef CHashTableT<Tsegment, c_hash_bits> HashTable;
- typedef CArrayT<Tsegment> Heap;
+ typedef SmallArray<Tsegment> Heap;
typedef typename Tsegment::Key Key; ///< key to hash table
HashTable m_map;
@@ -133,7 +133,7 @@ struct CSegmentCostCacheT
Tsegment *item = m_map.Find(key);
if (item == NULL) {
*found = false;
- item = new (&m_heap.AddNC()) Tsegment(key);
+ item = new (&m_heap.Append()) Tsegment(key);
m_map.Push(*item);
} else {
*found = true;