From ca8787a98171070c771dc167b43d5bdb98c52ce4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 4 Jan 2015 11:10:45 +0000 Subject: boost::unordered_map->std::unordered_map Change-Id: I5d458f43616edc395faa8c27edaddc7d515166db --- stoc/source/servicemanager/servicemanager.cxx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'stoc/source/servicemanager') 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 #include -#include -#include #include #include #include @@ -55,6 +53,9 @@ #include #include +#include +#include + 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, 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, OUStringHash > HashMultimap_OWString_Interface; -typedef boost::unordered_map +typedef std::unordered_map < OUString, Reference, -- cgit