diff options
author | 大河メタル <metarutaiga@gmail.com> | 2021-06-30 04:09:46 +0000 |
---|---|---|
committer | Rasmus Munk Larsen <rmlarsen@google.com> | 2021-06-30 04:09:46 +0000 |
commit | c81da59a252b3479753b2eada26ee0cf46280bd0 (patch) | |
tree | b4ce3818e85f5d1eb4303c1441d0e8fa552a0dbb | |
parent | 5aebbe9098f53f01c99eed67b52725397e955280 (diff) |
Correct declarations for aarch64-pc-windows-msvc
-rw-r--r-- | Eigen/src/Core/arch/NEON/PacketMath.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/arch/NEON/PacketMath.h b/Eigen/src/Core/arch/NEON/PacketMath.h index 5e7702a50..d2aeef430 100644 --- a/Eigen/src/Core/arch/NEON/PacketMath.h +++ b/Eigen/src/Core/arch/NEON/PacketMath.h @@ -32,7 +32,7 @@ namespace internal { #endif #endif -#if EIGEN_COMP_MSVC +#if EIGEN_COMP_MSVC_STRICT // In MSVC's arm_neon.h header file, all NEON vector types // are aliases to the same underlying type __n128. @@ -78,7 +78,7 @@ typedef uint32x4_t Packet4ui; typedef int64x2_t Packet2l; typedef uint64x2_t Packet2ul; -#endif // EIGEN_COMP_MSVC +#endif // EIGEN_COMP_MSVC_STRICT EIGEN_STRONG_INLINE Packet4f shuffle1(const Packet4f& m, int mask){ const float* a = reinterpret_cast<const float*>(&m); |