summaryrefslogtreecommitdiff
path: root/stoc/source/namingservice
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/namingservice
parent18861c30a63dd419f3be47896a760109ac06c47a (diff)
boost::unordered_map->std::unordered_map
Change-Id: I5d458f43616edc395faa8c27edaddc7d515166db
Diffstat (limited to 'stoc/source/namingservice')
-rw-r--r--stoc/source/namingservice/namingservice.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/stoc/source/namingservice/namingservice.cxx b/stoc/source/namingservice/namingservice.cxx
index b0b016a87c03..46b073cc2f71 100644
--- a/stoc/source/namingservice/namingservice.cxx
+++ b/stoc/source/namingservice/namingservice.cxx
@@ -18,7 +18,6 @@
*/
-#include <boost/unordered_map.hpp>
#include <osl/mutex.hxx>
#include <osl/diagnose.h>
#include <uno/dispatcher.h>
@@ -34,6 +33,8 @@
#include <com/sun/star/uno/XNamingService.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
+#include <unordered_map>
+
using namespace cppu;
using namespace osl;
using namespace std;
@@ -61,7 +62,7 @@ static OUString ns_getImplementationName()
return OUString(IMPLNAME);
}
-typedef boost::unordered_map
+typedef std::unordered_map
<
OUString,
Reference<XInterface >,