diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-01 19:58:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 16:14:36 +0000 |
commit | fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b (patch) | |
tree | 448f0d04f780007b3eeeb76b7c4c8c54cbfd6d9b /registry | |
parent | c48b928acab9f226ad5ad816fe773c21051431e8 (diff) |
boost::unordered_map->std::unordered_map
you can get debug stl this way
Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
Diffstat (limited to 'registry')
-rw-r--r-- | registry/source/regimpl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
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 <set> -#include <boost/unordered_map.hpp> +#include <unordered_map> #include <registry/registry.h> #include <rtl/ustring.hxx> @@ -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; |