From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Fri, 20 Jan 2023 23:41:56 -0800 Subject: [PATCH 2/3] Intellisense fix --- Eigen/src/Core/util/Macros.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h index 986c3d44db94c8ba339792b6738c47cdd2c5acbc..81986b9447824c440e004f38a220393ef5a089c6 100644 --- a/Eigen/src/Core/util/Macros.h +++ b/Eigen/src/Core/util/Macros.h @@ -58,6 +58,16 @@ // Compiler identification, EIGEN_COMP_* //------------------------------------------------------------------------------------------ +/// \internal Disable NEON features in Intellisense +#if __INTELLISENSE__ +#ifdef __ARM_NEON +#undef __ARM_NEON +#endif +#ifdef __ARM_NEON__ +#undef __ARM_NEON__ +#endif +#endif + /// \internal EIGEN_COMP_GNUC set to 1 for all compilers compatible with GCC #ifdef __GNUC__ #define EIGEN_COMP_GNUC (__GNUC__*10+__GNUC_MINOR__)