summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/gcc3_linux_s390x
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-07 12:36:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-07 14:41:11 +0100
commit063a511583df8c2253c16ac5eb617ecf9eee7754 (patch)
tree79dcbdc4630f8be006cf5410a6f7277163f44172 /bridges/source/cpp_uno/gcc3_linux_s390x
parentde1e4ec8fe8b101aa5e2b65a3a093588e7c57366 (diff)
Revert "Revert "boost::unordered_map->std::unordered_map""
This reverts commit 3976739f2378391fa09379c48844daf0e2790f5b, the problem mentioned there was caused by a different commit, and has meanwhile been fixed.
Diffstat (limited to 'bridges/source/cpp_uno/gcc3_linux_s390x')
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx b/bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx
index 92faed480720..abf406cdc863 100644
--- a/bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx
@@ -22,8 +22,6 @@
#include <string.h>
#include <dlfcn.h>
#include <cxxabi.h>
-#include <boost/unordered_map.hpp>
-
#include <rtl/strbuf.hxx>
#include <rtl/ustrbuf.hxx>
#include <osl/mutex.hxx>
@@ -31,7 +29,7 @@
#include <com/sun/star/uno/genfunc.hxx>
#include <typelib/typedescription.hxx>
#include <uno/any2.h>
-
+#include <unordered_map>
#include "share.hxx"
@@ -87,7 +85,7 @@ static OUString toUNOname( char const * p )
class RTTI
{
- typedef boost::unordered_map< OUString, type_info *, OUStringHash > t_rtti_map;
+ typedef std::unordered_map< OUString, type_info *, OUStringHash > t_rtti_map;
Mutex m_mutex;
t_rtti_map m_rttis;