@@ -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