summaryrefslogtreecommitdiff
path: root/stoc/source/security/lru_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/source/security/lru_cache.h')
-rw-r--r--stoc/source/security/lru_cache.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h
index 3ecf9905f251..197f395ff6e3 100644
--- a/stoc/source/security/lru_cache.h
+++ b/stoc/source/security/lru_cache.h
@@ -82,13 +82,6 @@ public:
*/
inline void set( t_key const & key, t_val const & val );
- /** Tests whether a value is cached for given key.
-
- @param key a key
- @return true, if value is cached
- */
- inline bool has( t_key const & key ) const;
-
/** Clears the cache, releasing all cached elements and keys.
*/
inline void clear();
@@ -171,14 +164,6 @@ inline void lru_cache< t_key, t_val, t_hashKey, t_equalKey >::toFront(
}
template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
-inline bool lru_cache< t_key, t_val, t_hashKey, t_equalKey >::has(
- t_key const & key ) const
-{
- typename t_key2element::const_iterator const iFind( m_key2element.find( key ) );
- return (iFind != m_key2element.end());
-}
-
-template< typename t_key, typename t_val, typename t_hashKey, typename t_equalKey >
inline t_val const * lru_cache< t_key, t_val, t_hashKey, t_equalKey >::lookup(
t_key const & key ) const
{