diff options
Diffstat (limited to 'vcl/inc/fontcache.hxx')
-rw-r--r-- | vcl/inc/fontcache.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/fontcache.hxx b/vcl/inc/fontcache.hxx index 777c896face3..98d9029b6be9 100644 --- a/vcl/inc/fontcache.hxx +++ b/vcl/inc/fontcache.hxx @@ -22,7 +22,7 @@ #include <rtl/ustring.hxx> #include <vcl/dllapi.h> -#include <boost/unordered_map.hpp> +#include <unordered_map> #include "fontmanager.hxx" @@ -42,7 +42,7 @@ class VCL_PLUGIN_PUBLIC FontCache FontCacheEntry m_aEntry; }; - typedef boost::unordered_map< OString, FontFile, OStringHash > FontDirMap; + typedef std::unordered_map< OString, FontFile, OStringHash > FontDirMap; struct FontDir { sal_Int64 m_nTimestamp; @@ -53,7 +53,7 @@ class VCL_PLUGIN_PUBLIC FontCache FontDir() : m_nTimestamp(0), m_bNoFiles(false), m_bUserOverrideOnly( false ) {} }; - typedef boost::unordered_map< int, FontDir > FontCacheData; + typedef std::unordered_map< int, FontDir > FontCacheData; FontCacheData m_aCache; OUString m_aCacheFile; bool m_bDoFlush; |