diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-02-04 19:50:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-02-04 19:50:27 +0000 |
commit | 1d6bdb838009860759ff2abdbbc03102d80f70eb (patch) | |
tree | 4d11ac0d390945d26aae3bc8faccbcf493a41f77 /cppu | |
parent | 097ea7234aae7c4d444e63ab831dd09a932d36f6 (diff) |
revert this change for now as its triggering a crash in saxparser
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/uno/EnvStack.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppu/source/uno/EnvStack.cxx b/cppu/source/uno/EnvStack.cxx index 0af0aafc17ea..330353a1e5c7 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; |