Make test packetmath C++98 compliant

This commit is contained in:
David Tellenbach 2020-07-01 20:41:59 +02:00
parent 116c5235ac
commit cb63153183

View File

@ -252,7 +252,7 @@ void packetmath_boolean_mask_ops() {
// Packet16b representing bool does not support ptrue, pandnot or pcmp_eq, since the scalar path // Packet16b representing bool does not support ptrue, pandnot or pcmp_eq, since the scalar path
// (for some compilers) compute the bitwise and with 0x1 of the results to keep the value in [0,1]. // (for some compilers) compute the bitwise and with 0x1 of the results to keep the value in [0,1].
template<> template<>
void packetmath_boolean_mask_ops<bool, typename internal::packet_traits<bool>::type>() {} void packetmath_boolean_mask_ops<bool, internal::packet_traits<bool>::type>() {}
template <typename Scalar, typename Packet> template <typename Scalar, typename Packet>
void packetmath() { void packetmath() {