From a7473d6d5a5fc22836783e3df43d7b4bb9087af1 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Thu, 6 Oct 2016 14:33:22 -0700 Subject: [PATCH] Fixed compilation error with gcc >= 5.3 --- Eigen/src/Core/arch/AVX512/PacketMath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/arch/AVX512/PacketMath.h b/Eigen/src/Core/arch/AVX512/PacketMath.h index cd221cf43b..b96aae33a7 100644 --- a/Eigen/src/Core/arch/AVX512/PacketMath.h +++ b/Eigen/src/Core/arch/AVX512/PacketMath.h @@ -76,7 +76,7 @@ template<> struct packet_traits : default_packet_traits HasHalfPacket = 1, #if EIGEN_GNUC_AT_LEAST(5, 3) HasSqrt = 1, - HasRsqrt = EIGEN_FAST_MATH + HasRsqrt = EIGEN_FAST_MATH, #endif HasDiv = 1 };