diff --git a/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp b/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp index e19224ee..ce2dd492 100644 --- a/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp +++ b/SheepShaver/src/kpx_cpu/src/cpu/block-cache.hpp @@ -61,8 +61,6 @@ public: void clear(); void clear_range(uintptr start, uintptr end); block_info *find(uintptr pc); - entry *first_active() const; - entry *first_dormant() const; void remove_from_cl_list(block_info *bi); void remove_from_list(block_info *bi); @@ -172,20 +170,6 @@ block_info *block_cache< block_info, block_allocator >::find(uintptr pc) return NULL; } -template< class block_info, template class block_allocator > -inline typename block_cache< block_info, block_allocator >::entry * -block_cache< block_info, block_allocator >::first_active() const -{ - return active; -} - -template< class block_info, template class block_allocator > -inline typename block_cache< block_info, block_allocator >::entry * -block_cache< block_info, block_allocator >::first_dormant() const -{ - return dormant; -} - template< class block_info, template class block_allocator > void block_cache< block_info, block_allocator >::remove_from_cl_list(block_info *bi) {