File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ LIBC_INLINE DoubleDouble tan_eval(const DoubleDouble &u) {
95
95
}
96
96
97
97
// Accurate evaluation of tan for small u.
98
- Float128 tan_eval (const Float128 &u) {
98
+ [[maybe_unused]] Float128 tan_eval (const Float128 &u) {
99
99
Float128 u_sq = fputil::quick_mul (u, u);
100
100
101
101
// tan(x) ~ x + x^3/3 + x^5 * 2/15 + x^7 * 17/315 + x^9 * 62/2835 +
@@ -127,7 +127,7 @@ Float128 tan_eval(const Float128 &u) {
127
127
// Calculation a / b = a * (1/b) for Float128.
128
128
// Using the initial approximation of q ~ (1/b), then apply 2 Newton-Raphson
129
129
// iterations, before multiplying by a.
130
- Float128 newton_raphson_div (const Float128 &a, Float128 b, double q) {
130
+ [[maybe_unused]] Float128 newton_raphson_div (const Float128 &a, Float128 b, double q) {
131
131
Float128 q0 (q);
132
132
constexpr Float128 TWO (2.0 );
133
133
b.sign = (b.sign == Sign::POS) ? Sign::NEG : Sign::POS;
You can’t perform that action at this time.
0 commit comments