From f8527e1cadd1e62ab047a14b388fe9c92d4aff8a Mon Sep 17 00:00:00 2001 From: wertzuz Date: Wed, 14 Jun 2023 22:04:40 +0200 Subject: [PATCH] AK: Rename fixme to match other FIXMEs --- AK/Math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Math.h b/AK/Math.h index 030a9e4aba..8f793cee2e 100644 --- a/AK/Math.h +++ b/AK/Math.h @@ -772,7 +772,7 @@ template 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)