mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
LibM: Fix INFITITY to float
POSIX mandates it.
This commit is contained in:
parent
8d95bd8418
commit
91def742a4
2 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ static String double_to_string(double d)
|
|||
builder.append(double_to_string(-d));
|
||||
return builder.to_string();
|
||||
}
|
||||
if (d == INFINITY)
|
||||
if (d == static_cast<double>(INFINITY))
|
||||
return "Infinity";
|
||||
|
||||
StringBuilder number_string_builder;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue