remove dead code

This commit is contained in:
gbeauche 2003-11-30 17:13:10 +00:00
parent efad4ff3b6
commit 833fc0c935

View File

@ -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 T> 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 T> 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 T> class block_allocator >
void block_cache< block_info, block_allocator >::remove_from_cl_list(block_info *bi)
{