From 7db0ac977acf276fb0817cfb89e490cdbae0ab56 Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Thu, 27 Jan 2022 02:20:03 +0000 Subject: [PATCH] Remove extraneous ")". --- test/packetmath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/packetmath.cpp b/test/packetmath.cpp index be6c90d5f..0a183a587 100644 --- a/test/packetmath.cpp +++ b/test/packetmath.cpp @@ -643,7 +643,7 @@ void packetmath() { CHECK_CWISE1_IF(PacketTraits::HasSqrt, numext::sqrt, internal::psqrt); CHECK_CWISE1_IF(PacketTraits::HasRsqrt, numext::rsqrt, internal::prsqrt); CHECK_CWISE3_IF(true, REF_MADD, internal::pmadd); - if (!std::is_same::value && NumTraits::IsSigned)) { + if (!std::is_same::value && NumTraits::IsSigned) { CHECK_CWISE3_IF(true, REF_MSUB, internal::pmsub); CHECK_CWISE3_IF(true, REF_NMADD, internal::pnmadd); CHECK_CWISE3_IF(true, REF_NMSUB, internal::pnmsub);