summaryrefslogtreecommitdiff
path: root/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx')
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx b/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
index 247b12aafb25..c21fb7672bc3 100644
--- a/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
+++ b/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
@@ -35,11 +35,11 @@
#include "sal/types.h"
#include "typelib/typedescription.hxx"
-#include <hash_map>
+#include <boost/unordered_map.hpp>
/*See: http://people.redhat.com/drepper/selinux-mem.html*/
#if defined(LINUX) || defined(OPENBSD) || defined(FREEBSD) \
- || defined(NETBSD)
+ || defined(NETBSD) || defined(DRAGONFLY)
#define USE_DOUBLE_MMAP
#endif
@@ -203,7 +203,7 @@ private:
static void flushCode(
unsigned char const * begin, unsigned char const * end);
- typedef std::hash_map< rtl::OUString, Vtables, rtl::OUStringHash > Map;
+ typedef boost::unordered_map< rtl::OUString, Vtables, rtl::OUStringHash > Map;
osl::Mutex m_mutex;
Map m_map;