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/inc/bridges/cpp_uno/shared/vtablefactory.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bridges/inc') diff --git a/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx b/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx index 1e9a48876a10..4216566b9a3e 100644 --- a/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx +++ b/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx @@ -26,7 +26,7 @@ #include "sal/types.h" #include "typelib/typedescription.hxx" -#include +#include /*See: http://people.redhat.com/drepper/selinux-mem.html*/ #if defined(LINUX) || defined(OPENBSD) || defined(FREEBSD) \ @@ -207,7 +207,7 @@ private: static void flushCode( unsigned char const * begin, unsigned char const * end); - typedef boost::unordered_map< OUString, Vtables, OUStringHash > Map; + typedef std::unordered_map< OUString, Vtables, OUStringHash > Map; osl::Mutex m_mutex; Map m_map; -- cgit