diff --git a/AK/NumericLimits.h b/AK/NumericLimits.h index 66eb28f8cad..69d5080d6a7 100644 --- a/AK/NumericLimits.h +++ b/AK/NumericLimits.h @@ -16,8 +16,8 @@ struct NumericLimits { template<> struct NumericLimits { - static constexpr char min() { return false; } - static constexpr char max() { return true; } + static constexpr bool min() { return false; } + static constexpr bool max() { return true; } static constexpr bool is_signed() { return false; } };