summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/gcc3_linux_mips/except.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-05 08:15:57 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-05 12:37:48 +0000
commitce7f442bd0b600c0acc74d4757e894a2ba382c53 (patch)
tree3eab667001c3f9dd525134b7a89d35af75f5d204 /bridges/source/cpp_uno/gcc3_linux_mips/except.cxx
parentda2d66ce567460806c09ed2d936a98092ee059ff (diff)
boost::unordered_map->std::unordered_map
Change-Id: I3a16703727f1a421e0ed18079e14219a4feeb8c8
Diffstat (limited to 'bridges/source/cpp_uno/gcc3_linux_mips/except.cxx')
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/except.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_mips/except.cxx b/bridges/source/cpp_uno/gcc3_linux_mips/except.cxx
index 502d94d24b94..419cae761915 100644
--- a/bridges/source/cpp_uno/gcc3_linux_mips/except.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_mips/except.cxx
@@ -20,8 +20,6 @@
#include <string.h>
#include <dlfcn.h>
#include <cxxabi.h>
-#include <boost/unordered_map.hpp>
-
#include <rtl/strbuf.hxx>
#include <rtl/ustrbuf.hxx>
#include <sal/log.hxx>
@@ -30,7 +28,7 @@
#include <com/sun/star/uno/genfunc.hxx>
#include <typelib/typedescription.hxx>
#include <uno/any2.h>
-
+#include <unordered_map>
#include "share.hxx"
@@ -86,7 +84,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;