From fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 1 Jan 2015 19:58:59 +0000 Subject: boost::unordered_map->std::unordered_map you can get debug stl this way Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19 --- registry/source/regimpl.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'registry') diff --git a/registry/source/regimpl.hxx b/registry/source/regimpl.hxx index 3b306c06e98c..f05dd1e9f5ea 100644 --- a/registry/source/regimpl.hxx +++ b/registry/source/regimpl.hxx @@ -21,7 +21,7 @@ #define INCLUDED_REGISTRY_SOURCE_REGIMPL_HXX #include -#include +#include #include #include @@ -156,7 +156,7 @@ private: const OUString& sName, sal_Int16 nSpace) const; - typedef boost::unordered_map< OUString, ORegKey*, OUStringHash > KeyMap; + typedef std::unordered_map< OUString, ORegKey*, OUStringHash > KeyMap; sal_uInt32 m_refCount; osl::Mutex m_mutex; -- cgit