mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:47:35 +00:00
AK: Add NumericLimits specialization for char.
This is yet another bug because of the 'char'/'signed char'/'unsigned char' shit.
This commit is contained in:
parent
71b7ef0992
commit
f221a95a71
1 changed files with 7 additions and 0 deletions
|
@ -48,6 +48,13 @@ struct NumericLimits<signed char> {
|
||||||
static constexpr bool is_signed() { return true; }
|
static constexpr bool is_signed() { return true; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct NumericLimits<char> {
|
||||||
|
static constexpr char min() { return -__SCHAR_MAX__ - 1; }
|
||||||
|
static constexpr char max() { return __SCHAR_MAX__; }
|
||||||
|
static constexpr bool is_signed() { return true; }
|
||||||
|
};
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
struct NumericLimits<short> {
|
struct NumericLimits<short> {
|
||||||
static constexpr short min() { return -__SHRT_MAX__ - 1; }
|
static constexpr short min() { return -__SHRT_MAX__ - 1; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue