summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2020-09-12 18:17:08 +0200
committerJan-Marek Glogowski <glogow@fbihome.de>2020-09-17 09:24:32 +0200
commitb25aa1cd813478f1cb08bf4f2a79ed83852a33e9 (patch)
tree50203d74e8f5c8a7769ef050877be2df02287fcb /basic
parent451f346d0b918dcc83c3209deab7ff3ed0aa4ee9 (diff)
basic: use dummy DLL mgr for Windows Arm64 build
This will need a real implementation to do system calls, but for the initial compilation the dummy is sufficient. Change-Id: Ia16e47fdb8fbf4855f7c5abb0d36d9c922cd1de7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102860 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/dllmgr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/dllmgr.hxx b/basic/source/runtime/dllmgr.hxx
index 08927843a98d..368fa3d10a2f 100644
--- a/basic/source/runtime/dllmgr.hxx
+++ b/basic/source/runtime/dllmgr.hxx
@@ -42,7 +42,7 @@ public:
void FreeDll(OUString const & library);
private:
-#ifdef _WIN32
+#if defined(_WIN32) && !defined(_ARM64_)
struct Impl;
std::unique_ptr< Impl > impl_;