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 --- dbaccess/inc/pch/precompiled_dbu.hxx | 2 +- dbaccess/source/core/recovery/subcomponents.hxx | 6 +++--- dbaccess/source/ui/browser/genericcontroller.cxx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'dbaccess') diff --git a/dbaccess/inc/pch/precompiled_dbu.hxx b/dbaccess/inc/pch/precompiled_dbu.hxx index bdcebd7460f6..fbdb795f00fc 100644 --- a/dbaccess/inc/pch/precompiled_dbu.hxx +++ b/dbaccess/inc/pch/precompiled_dbu.hxx @@ -35,8 +35,8 @@ #include #include #include -#include #include +#include #include #include #include diff --git a/dbaccess/source/core/recovery/subcomponents.hxx b/dbaccess/source/core/recovery/subcomponents.hxx index dfa944e19ddb..e48d32be6392 100644 --- a/dbaccess/source/core/recovery/subcomponents.hxx +++ b/dbaccess/source/core/recovery/subcomponents.hxx @@ -26,8 +26,8 @@ #include -#include #include +#include namespace dbaccess { @@ -62,8 +62,8 @@ namespace dbaccess } }; - typedef ::boost::unordered_map< OUString, SubComponentDescriptor, OUStringHash > MapStringToCompDesc; - typedef ::std::map< SubComponentType, MapStringToCompDesc > MapCompTypeToCompDescs; + typedef std::unordered_map< OUString, SubComponentDescriptor, OUStringHash > MapStringToCompDesc; + typedef std::map< SubComponentType, MapStringToCompDesc > MapCompTypeToCompDescs; } // namespace dbaccess diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx index 310078bb2010..99e2fd778fb4 100644 --- a/dbaccess/source/ui/browser/genericcontroller.cxx +++ b/dbaccess/source/ui/browser/genericcontroller.cxx @@ -56,9 +56,9 @@ #include #include #include -#include #include #include +#include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -79,7 +79,7 @@ using namespace ::comphelper; #define FIRST_USER_DEFINED_FEATURE ( ::std::numeric_limits< sal_uInt16 >::max() - 1000 ) #define LAST_USER_DEFINED_FEATURE ( ::std::numeric_limits< sal_uInt16 >::max() ) -typedef ::boost::unordered_map< sal_Int16, sal_Int16 > CommandHashMap; +typedef std::unordered_map< sal_Int16, sal_Int16 > CommandHashMap; typedef ::std::list< DispatchInformation > DispatchInfoList; namespace dbaui -- cgit