0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-19 03:13:47 +02:00

ircd::fmt: Unrestrict long long from fmt specifiers.

This commit is contained in:
Jason Volk 2018-01-10 18:34:16 -08:00
parent 40bead52b7
commit fed3265d33

View file

@ -114,10 +114,11 @@ struct bool_specifier
static const std::tuple static const std::tuple
< <
bool, bool,
char, unsigned char, char, unsigned char,
short, unsigned short, short, unsigned short,
int, unsigned int, int, unsigned int,
long, unsigned long long, unsigned long,
long long, unsigned long long
> >
types; types;
@ -139,10 +140,11 @@ struct signed_specifier
static const std::tuple static const std::tuple
< <
bool, bool,
char, unsigned char, char, unsigned char,
short, unsigned short, short, unsigned short,
int, unsigned int, int, unsigned int,
long, unsigned long long, unsigned long,
long long, unsigned long long
> >
types; types;
@ -164,10 +166,11 @@ struct unsigned_specifier
static const std::tuple static const std::tuple
< <
bool, bool,
char, unsigned char, char, unsigned char,
short, unsigned short, short, unsigned short,
int, unsigned int, int, unsigned int,
long, unsigned long long, unsigned long,
long long, unsigned long long
> >
types; types;
@ -185,10 +188,11 @@ struct hex_lowercase_specifier
static const std::tuple static const std::tuple
< <
bool, bool,
char, unsigned char, char, unsigned char,
short, unsigned short, short, unsigned short,
int, unsigned int, int, unsigned int,
long, unsigned long long, unsigned long,
long long, unsigned long long
> >
types; types;