From 063a511583df8c2253c16ac5eb617ecf9eee7754 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 7 Jan 2015 12:36:11 +0100 Subject: 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. --- bridges/source/cpp_uno/msvc_win32_intel/except.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bridges/source/cpp_uno/msvc_win32_intel') 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 #include #include #include @@ -31,7 +30,7 @@ #include #include "com/sun/star/uno/Any.hxx" - +#include #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 { -- cgit