[Libreoffice-commits] core.git: sc/source
Mike Kaganski (via logerrit)
logerrit at kemper.freedesktop.org
Tue Jul 9 02:31:26 UTC 2019
sc/source/core/inc/arraysumfunctor.hxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 1f25fd18f006c89c5e387b4ca8546025bc3a969b
Author: Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Tue Jul 9 12:13:13 2019 +1000
Commit: Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Tue Jul 9 04:30:26 2019 +0200
Fix Windows x64 build after commit f43f9b99603736a4d54f550052509eb5f4d04b45
... and Windows x32, if it's built with sse2 baseline (will be the default
when we drop support for Windows 7).
Change-Id: I2e125b49906d7e81b3e8d825b11e28e9b096e1d5
Reviewed-on: https://gerrit.libreoffice.org/75282
Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>
Tested-by: Mike Kaganski <mike.kaganski at collabora.com>
diff --git a/sc/source/core/inc/arraysumfunctor.hxx b/sc/source/core/inc/arraysumfunctor.hxx
index 05977c026361..b4da4d9d4064 100644
--- a/sc/source/core/inc/arraysumfunctor.hxx
+++ b/sc/source/core/inc/arraysumfunctor.hxx
@@ -19,8 +19,12 @@
#include <tools/cpuid.hxx>
#if defined(LO_SSE2_AVAILABLE)
+#ifdef _WIN32
+#include <intrin.h>
+#else
#include <x86intrin.h>
#endif
+#endif
namespace sc
{
More information about the Libreoffice-commits
mailing list