diff options
author | tron <tron@openttd.org> | 2006-10-28 12:10:11 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-10-28 12:10:11 +0000 |
commit | 45bef5f7426dc873acec15c9d13f0d413a613ae4 (patch) | |
tree | 2101547f088255850a12d2d4ea4f4ffd6605f21b | |
parent | 59c709a686460a0e9b2321091aa10d29031ba9ea (diff) | |
download | openttd-45bef5f7426dc873acec15c9d13f0d413a613ae4.tar.xz |
(svn r6989) Remove the unused GetItemFromPool() function
-rw-r--r-- | pool.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -50,12 +50,6 @@ bool AddBlockToPool(MemoryPool *array); */ bool AddBlockIfNeeded(MemoryPool *array, uint index); -static inline byte *GetItemFromPool(const MemoryPool *pool, uint index) -{ - assert(index < pool->total_items); - return (pool->blocks[index >> pool->block_size_bits] + (index & ((1 << pool->block_size_bits) - 1)) * pool->item_size); -} - #define POOL_ENUM(name, type, block_size_bits, max_blocks) \ enum { \ |