diff options
Diffstat (limited to 'AK/FixedPoint.h')
-rw-r--r-- | AK/FixedPoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/FixedPoint.h b/AK/FixedPoint.h index 2453c54246..0deeeee7f1 100644 --- a/AK/FixedPoint.h +++ b/AK/FixedPoint.h @@ -335,7 +335,7 @@ public: bool operator<(This const& other) const { return raw() < other.raw(); } bool operator<=(This const& other) const { return raw() <= other.raw(); } - // FIXE: There are probably better ways to do these + // FIXME: There are probably better ways to do these template<Integral I> bool operator==(I other) const { |