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 --- ucbhelper/source/provider/contenthelper.cxx | 5 +++-- ucbhelper/source/provider/providerhelper.cxx | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'ucbhelper') diff --git a/ucbhelper/source/provider/contenthelper.cxx b/ucbhelper/source/provider/contenthelper.cxx index 11570b59731f..280d2422354c 100644 --- a/ucbhelper/source/provider/contenthelper.cxx +++ b/ucbhelper/source/provider/contenthelper.cxx @@ -17,7 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include #include #include #include @@ -34,6 +33,8 @@ #include "osl/mutex.hxx" #include "rtl/ref.hxx" +#include + using namespace com::sun::star; namespace ucbhelper_impl @@ -74,7 +75,7 @@ struct hashPtr } }; -typedef boost::unordered_map +typedef std::unordered_map < XPropertiesChangeListenerPtr, PropertyEventSequence*, diff --git a/ucbhelper/source/provider/providerhelper.cxx b/ucbhelper/source/provider/providerhelper.cxx index c7fa7caba7d1..67357d687ddd 100644 --- a/ucbhelper/source/provider/providerhelper.cxx +++ b/ucbhelper/source/provider/providerhelper.cxx @@ -17,7 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include #include #include #include @@ -33,12 +32,14 @@ #include "osl/mutex.hxx" #include "cppuhelper/weakref.hxx" +#include + using namespace com::sun::star; namespace ucbhelper_impl { -typedef boost::unordered_map +typedef std::unordered_map < OUString, uno::WeakReference< ucb::XContent >, -- cgit