summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/msvc_win32_intel
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/msvc_win32_intel
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/msvc_win32_intel')
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/except.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx
index 57415cde2af2..903346a0450e 100644
--- a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx
@@ -19,7 +19,6 @@
#pragma warning( disable : 4237 )
-#include <boost/unordered_map.hpp>
#include <sal/config.h>
#include <malloc.h>
#include <typeinfo.h>
@@ -31,7 +30,7 @@
#include <sal/log.hxx>
#include "com/sun/star/uno/Any.hxx"
-
+#include <unordered_map>
#include "msci.hxx"
@@ -82,7 +81,7 @@ static inline OUString toRTTIname( OUString const & rUNOname ) throw ()
//#### RTTI simulation #############################################################################
-typedef boost::unordered_map< OUString, void *, OUStringHash, equal_to< OUString > > t_string2PtrMap;
+typedef std::unordered_map< OUString, void *, OUStringHash, equal_to< OUString > > t_string2PtrMap;
class RTTInfos
{