BAN: Fix negative floating point value printing

This commit is contained in:
Bananymous 2025-04-01 22:39:21 +03:00
parent d8bb0b53f8
commit 73c292c4e9
1 changed files with 6 additions and 2 deletions

View File

@ -204,10 +204,14 @@ namespace BAN::Formatter
template<typename F, typename T>
inline void print_floating(F putc, T value, const ValueFormat& format)
{
if (value < 0)
{
putc('-');
return print_floating(putc, -value, format);
}
int64_t int_part = (int64_t)value;
T frac_part = value - (T)int_part;
if (frac_part < 0)
frac_part = -frac_part;
print_integer(putc, int_part, format);