[Libreoffice-commits] core.git: basic/source
Jan-Marek Glogowski (via logerrit)
logerrit at kemper.freedesktop.org
Thu Sep 17 07:25:21 UTC 2020
basic/source/runtime/dllmgr.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit b25aa1cd813478f1cb08bf4f2a79ed83852a33e9
Author: Jan-Marek Glogowski <glogow at fbihome.de>
AuthorDate: Sat Sep 12 18:17:08 2020 +0200
Commit: Jan-Marek Glogowski <glogow at fbihome.de>
CommitDate: Thu Sep 17 09:24:32 2020 +0200
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 at fbihome.de>
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_;
More information about the Libreoffice-commits
mailing list