mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-04 17:40:35 +00:00
Fix type in assert message. (#3508)
Reviewed all strings in the file and found no other typos.
This commit is contained in:
parent
13156e54bf
commit
a331dbfb65
@ -3300,7 +3300,7 @@ FMT_CONSTEXPR20 auto format_float(Float value, int precision, float_specs specs,
|
||||
significand <<= 1;
|
||||
} else {
|
||||
// Normalize subnormal inputs.
|
||||
FMT_ASSERT(significand != 0, "zeros should not appear hear");
|
||||
FMT_ASSERT(significand != 0, "zeros should not appear here");
|
||||
int shift = countl_zero(significand);
|
||||
FMT_ASSERT(shift >= num_bits<uint64_t>() - num_significand_bits<double>(),
|
||||
"");
|
||||
|
Loading…
Reference in New Issue
Block a user