summaryrefslogtreecommitdiffstats
path: root/cppu/source/uno/lbenv.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/source/uno/lbenv.cxx')
-rw-r--r--cppu/source/uno/lbenv.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx
index 0d2bc0a80cd4..eb4e105b379a 100644
--- a/cppu/source/uno/lbenv.cxx
+++ b/cppu/source/uno/lbenv.cxx
@@ -41,7 +41,7 @@
#include "destr.hxx"
#include "loadmodule.hxx"
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
#include <vector>
#include <stdio.h>
@@ -104,19 +104,17 @@ struct FctPtrHash :
// mapping from environment name to environment
-typedef ::boost::unordered_map<
+typedef std::unordered_map<
OUString, uno_Environment *, OUStringHash > OUString2EnvironmentMap;
// mapping from ptr to object entry
-typedef ::boost::unordered_map<
+typedef std::unordered_map<
void *, ObjectEntry *, FctPtrHash,
::std::equal_to< void * > > Ptr2ObjectMap;
// mapping from oid to object entry
-typedef ::boost::unordered_map<
+typedef std::unordered_map<
OUString, ObjectEntry *, OUStringHash > OId2ObjectMap;
-
-
struct EnvironmentsData
{
::osl::Mutex mutex;