Fixed compilation error with gcc >= 5.3

This commit is contained in:
Benoit Steiner 2016-10-06 14:33:22 -07:00
parent 5e64cea896
commit a7473d6d5a

View File

@ -76,7 +76,7 @@ template<> struct packet_traits<double> : 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
};