[libc][NFC] Remove unused variable
authorGuillaume Chatelet <gchatelet@google.com>
Wed, 4 Jan 2023 15:25:48 +0000 (15:25 +0000)
committerGuillaume Chatelet <gchatelet@google.com>
Wed, 4 Jan 2023 15:27:04 +0000 (15:27 +0000)
libc/src/stdio/printf_core/float_dec_converter.h

index 9c7d3ad..e0f7b06 100644 (file)
@@ -498,7 +498,6 @@ int inline convert_float_decimal_typed(Writer *writer,
   constexpr int32_t MANT_WIDTH = fputil::MantissaWidth<T>::VALUE;
   bool is_negative = float_bits.get_sign();
   int exponent = float_bits.get_exponent();
-  MantissaInt mantissa = float_bits.get_explicit_mantissa();
 
   char sign_char = 0;