1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 21:55:08 +00:00

AK: Rename fixme to match other FIXMEs

This commit is contained in:
wertzuz 2023-06-14 22:04:40 +02:00 committed by Sam Atkins
parent 7c66c5f12d
commit f8527e1cad

View File

@ -772,7 +772,7 @@ template<FloatingPoint T>
constexpr T pow(T x, T y)
{
CONSTEXPR_STATE(pow, x, y);
// fixme I am naive
// FIXME: I am naive
if (__builtin_isnan(y))
return y;
if (y == 0)