summaryrefslogtreecommitdiff
path: root/stoc/source/servicemanager
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-04 11:10:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-04 12:51:09 +0000
commitca8787a98171070c771dc167b43d5bdb98c52ce4 (patch)
tree44e476f42d84e50a406698b78f8c72b3afbdebd2 /stoc/source/servicemanager
parent18861c30a63dd419f3be47896a760109ac06c47a (diff)
boost::unordered_map->std::unordered_map
Change-Id: I5d458f43616edc395faa8c27edaddc7d515166db
Diffstat (limited to 'stoc/source/servicemanager')
-rw-r--r--stoc/source/servicemanager/servicemanager.cxx13
1 files changed, 7 insertions, 6 deletions
diff --git a/stoc/source/servicemanager/servicemanager.cxx b/stoc/source/servicemanager/servicemanager.cxx
index 9641332ef71c..06bb75753203 100644
--- a/stoc/source/servicemanager/servicemanager.cxx
+++ b/stoc/source/servicemanager/servicemanager.cxx
@@ -22,8 +22,6 @@
#include <rtl/ref.hxx>
#include <rtl/ustrbuf.hxx>
-#include <boost/unordered_map.hpp>
-#include <boost/unordered_set.hpp>
#include <uno/mapping.hxx>
#include <uno/dispatcher.h>
#include <cppuhelper/queryinterface.hxx>
@@ -55,6 +53,9 @@
#include <com/sun/star/container/XHierarchicalNameAccess.hpp>
#include <com/sun/star/uno/XUnloadingPreference.hpp>
+#include <unordered_map>
+#include <unordered_set>
+
using namespace com::sun::star;
using namespace css::uno;
using namespace css::beans;
@@ -142,7 +143,7 @@ struct equaltoRef_Impl
{ return rName1 == rName2; }
};
-typedef boost::unordered_set
+typedef std::unordered_set
<
Reference<XInterface >,
hashRef_Impl,
@@ -290,20 +291,20 @@ Any ImplementationEnumeration_Impl::nextElement()
/*****************************************************************************
Hash tables
*****************************************************************************/
-typedef boost::unordered_set
+typedef std::unordered_set
<
OUString,
OUStringHash
> HashSet_OWString;
-typedef boost::unordered_multimap
+typedef std::unordered_multimap
<
OUString,
Reference<XInterface >,
OUStringHash
> HashMultimap_OWString_Interface;
-typedef boost::unordered_map
+typedef std::unordered_map
<
OUString,
Reference<XInterface >,