Skip to content

Commit 7ae6b90

Browse files
unused
1 parent 6244b9f commit 7ae6b90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/utils/MPFRWrapper/MPFRUtils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ template <Operation op, typename InputType, typename OutputType>
352352
__attribute__((no_sanitize("address"))) cpp::enable_if_t<
353353
is_valid_operation<op, InputType, OutputType>(),
354354
internal::MPFRMatcher<op, /*is_silent*/ false, InputType, OutputType>>
355-
get_mpfr_matcher(InputType input, OutputType output_unused,
355+
get_mpfr_matcher(InputType input, OutputType /*output_unused*/,
356356
double ulp_tolerance, RoundingMode rounding) {
357357
return internal::MPFRMatcher<op, /*is_silent*/ false, InputType, OutputType>(
358358
input, ulp_tolerance, rounding);
@@ -362,7 +362,7 @@ template <Operation op, typename InputType, typename OutputType>
362362
__attribute__((no_sanitize("address"))) cpp::enable_if_t<
363363
is_valid_operation<op, InputType, OutputType>(),
364364
internal::MPFRMatcher<op, /*is_silent*/ true, InputType, OutputType>>
365-
get_silent_mpfr_matcher(InputType input, OutputType output_unused,
365+
get_silent_mpfr_matcher(InputType input, OutputType /*output_unused*/,
366366
double ulp_tolerance, RoundingMode rounding) {
367367
return internal::MPFRMatcher<op, /*is_silent*/ true, InputType, OutputType>(
368368
input, ulp_tolerance, rounding);

0 commit comments

Comments
 (0)