From 718004ed27489622819255e8a3dde68a00f27ff8 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 10 Mar 2024 19:29:11 +0000 Subject: [PATCH] fpclassify coverage. --- include/boost/math/special_functions/fpclassify.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/math/special_functions/fpclassify.hpp b/include/boost/math/special_functions/fpclassify.hpp index 2c504d7ac..6f29f8051 100644 --- a/include/boost/math/special_functions/fpclassify.hpp +++ b/include/boost/math/special_functions/fpclassify.hpp @@ -163,7 +163,7 @@ inline int fpclassify_imp BOOST_NO_MACRO_EXPAND(T t, const generic_tag&) // whenever possible check for Nan's first: #if defined(BOOST_HAS_FPCLASSIFY) && !defined(BOOST_MATH_DISABLE_STD_FPCLASSIFY) if(::boost::math_detail::is_nan_helper(t, typename std::is_floating_point::type())) - return FP_NAN; + return FP_NAN; // LCOV_EXCL_LINE only called in UDT contexts (excluded from coverage checks). #elif defined(isnan) if(boost::math_detail::is_nan_helper(t, typename std::is_floating_point::type())) return FP_NAN;