summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/shared
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-06 09:14:10 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-06 09:15:14 +0000
commit3976739f2378391fa09379c48844daf0e2790f5b (patch)
tree9e3620b716f6d46f59d90b4d3932c329e9bc55c5 /bridges/source/cpp_uno/shared
parentabe670157b69aa7fe4b478f1fd13757d7b7fcc4b (diff)
Revert "boost::unordered_map->std::unordered_map"
as an experiment to see if that's somehow the cause of NEXT An uncaught exception of type com.sun.star.sdbc.SQLException NEXT - General error: java.lang.UnsatisfiedLinkError: com.sun.star.sdbcx.comp.hsqldb.StorageFileAccess.isStreamElement(Ljava/lang/String;Ljava/lang/String;)Z NEXT ##Failure Location unknown## : Error Test name: HSQLDBTest::testEmptyDBConnection NEXT An uncaught exception of type com.sun.star.sdbc.SQLException NEXT - General error: java.lang.UnsatisfiedLinkError: com.sun.star.sdbcx.comp.hsqldb.StorageFileAccess.isStreamElement(Ljava/lang/String;Ljava/lang/String;)Z under clang This reverts commit ce7f442bd0b600c0acc74d4757e894a2ba382c53. Change-Id: Ieed0be5721953b9644e4be411173e0ea73f33ed8
Diffstat (limited to 'bridges/source/cpp_uno/shared')
-rw-r--r--bridges/source/cpp_uno/shared/vtablefactory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/shared/vtablefactory.cxx b/bridges/source/cpp_uno/shared/vtablefactory.cxx
index ca77aea72e50..2e2d74c673db 100644
--- a/bridges/source/cpp_uno/shared/vtablefactory.cxx
+++ b/bridges/source/cpp_uno/shared/vtablefactory.cxx
@@ -35,8 +35,8 @@
#include "typelib/typedescription.hxx"
#include <boost/noncopyable.hpp>
+#include <boost/unordered_map.hpp>
#include <new>
-#include <unordered_map>
#include <vector>
#if defined SAL_UNX
@@ -153,7 +153,7 @@ private:
sal_Int32 calculate(
typelib_InterfaceTypeDescription * type, sal_Int32 offset);
- typedef std::unordered_map< OUString, sal_Int32, OUStringHash > Map;
+ typedef boost::unordered_map< OUString, sal_Int32, OUStringHash > Map;
Map m_map;
};