From 21882585677787710f99cbcae9d734678aa8f9e8 Mon Sep 17 00:00:00 2001 From: Robin Leroy Date: Wed, 1 Jan 2025 13:30:50 +0100 Subject: [PATCH] no force inline --- numerics/sin_cos.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/numerics/sin_cos.cpp b/numerics/sin_cos.cpp index d9b4beee8f..9315b27e9e 100644 --- a/numerics/sin_cos.cpp +++ b/numerics/sin_cos.cpp @@ -456,9 +456,6 @@ Value CosImplementation(DoublePrecision const θ_reduced) { return DetectDangerousRounding(cos_x₀_minus_h_sin_x₀.value, polynomial_term); } -#if PRINCIPIA_INLINE_SIN_COS -FORCE_INLINE(inline) -#endif Value __cdecl Sin(Argument θ) { OSACA_FUNCTION_BEGIN(θ); DoublePrecision θ_reduced; @@ -487,9 +484,6 @@ Value __cdecl Sin(Argument θ) { } } -#if PRINCIPIA_INLINE_SIN_COS -FORCE_INLINE(inline) -#endif Value __cdecl Cos(Argument θ) { OSACA_FUNCTION_BEGIN(θ); DoublePrecision θ_reduced;