diff options
Diffstat (limited to 'stoc/source/security/lru_cache.h')
-rw-r--r-- | stoc/source/security/lru_cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h index 4688dc9b3278..4a40792df073 100644 --- a/stoc/source/security/lru_cache.h +++ b/stoc/source/security/lru_cache.h @@ -19,7 +19,7 @@ #ifndef INCLUDED_STOC_SOURCE_SECURITY_LRU_CACHE_H #define INCLUDED_STOC_SOURCE_SECURITY_LRU_CACHE_H -#include <boost/unordered_map.hpp> +#include <unordered_map> // __CACHE_DIAGNOSE works only for OUString keys #ifdef __CACHE_DIAGNOSE @@ -45,7 +45,7 @@ class lru_cache Entry * m_pred; Entry * m_succ; }; - typedef ::boost::unordered_map< t_key, Entry *, t_hashKey, t_equalKey > t_key2element; + typedef std::unordered_map< t_key, Entry *, t_hashKey, t_equalKey > t_key2element; t_key2element m_key2element; ::std::size_t m_size; |