Skip to content

Commit bc0635f

Browse files
committed
Continue try repair LCOV code annotations
1 parent 9f0490e commit bc0635f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

include/boost/math/distributions/landau.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3382,7 +3382,7 @@ BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_lower_imp_prec(const Real
33823382

33833383
// Rational Approximation
33843384
// Maximum Relative Error: 5.3064e-35
3385-
//LCOV_EXCL_START
3385+
// LCOV_EXCL_START
33863386
BOOST_MATH_STATIC const RealType P[14] = {
33873387
BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.09971143249822249471944441552701756051e0),
33883388
BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.00154235169065403254826962372636417554e-2),

include/boost/math/special_functions/bessel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ BOOST_MATH_GPU_ENABLED inline T cyl_neumann_zero_imp(T v, int m, const Policy& p
524524

525525
if(number_of_iterations >= policies::get_max_root_iterations<Policy>())
526526
{
527-
return policies::raise_evaluation_error<T>(function, "Unable to locate root in a reasonable time: Current best guess is %1%", yvm, Policy()); //LCOV_EXCL_LINE
527+
return policies::raise_evaluation_error<T>(function, "Unable to locate root in a reasonable time: Current best guess is %1%", yvm, Policy()); // LCOV_EXCL_LINE
528528
}
529529

530530
return yvm;

include/boost/math/special_functions/detail/bessel_jy.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,8 @@ namespace boost { namespace math {
361361
// Truncated series evaluation for small x and v an integer,
362362
// much quicker in this area than temme_jy below.
363363
// This code is only used in the multiprecision case, otherwise
364-
// we go via bessel_jn. LCOV_EXCL_START
364+
// we go via bessel_jn.
365+
// LCOV_EXCL_START
365366
if(kind&need_j)
366367
Jv = bessel_j_small_z_series(v, x, pol);
367368
else

0 commit comments

Comments
 (0)