summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-02-04 19:50:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-02-04 19:50:27 +0000
commitb73cf2b1ef3892b4c200c05fd617bfd099aceee5 (patch)
tree13ad1b9565b52ac3fa89b6e44545823b498e4af6 /cppu
parenteb05de5301e33d53fb02840aa7ec75f0d101a330 (diff)
revert this change for now as its triggering a crash in saxparser
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/EnvStack.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppu/source/uno/EnvStack.cxx b/cppu/source/uno/EnvStack.cxx
index c96d307cd..99322eb0d 100644
--- a/cppu/source/uno/EnvStack.cxx
+++ b/cppu/source/uno/EnvStack.cxx
@@ -36,7 +36,7 @@
#include "osl/thread.h"
#include "osl/mutex.hxx"
-#include <boost/unordered_map.hpp>
+#include <hash_map>
using namespace com::sun::star;
@@ -65,7 +65,7 @@ size_t oslThreadIdentifier_hash::operator()(oslThreadIdentifier s1) const
return s1;
}
-typedef ::boost::unordered_map<oslThreadIdentifier,
+typedef ::std::hash_map<oslThreadIdentifier,
uno_Environment *,
oslThreadIdentifier_hash,
oslThreadIdentifier_equal> ThreadMap;