From 3e8e63eb46493dd9bdc505656f3169bd1385b3a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20S=C3=A1nchez?= Date: Wed, 6 Mar 2024 23:51:47 +0000 Subject: [PATCH] Fix packetmath plog test on Windows. --- test/packetmath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/packetmath.cpp b/test/packetmath.cpp index 92e72cb6e..116663d96 100644 --- a/test/packetmath.cpp +++ b/test/packetmath.cpp @@ -1566,7 +1566,7 @@ void packetmath_complex() { data1[1] = Scalar(-inf, nan); data1[2] = Scalar(nan, inf); data1[3] = Scalar(nan, -inf); - CHECK_CWISE1_IM1ULP_N(std::log, internal::plog, 4); + CHECK_CWISE1_IM1ULP_N(numext::log, internal::plog, 4); } exp_complex_test(data1, data2, ref, size); }