mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 18:28:20 +00:00
Use (u)int64_t instead of long.
This commit is contained in:
parent
9fc0574715
commit
41d898e1e4
4
format.h
4
format.h
@ -570,8 +570,8 @@ class Formatter : public BasicFormatter {
|
|||||||
int int_value;
|
int int_value;
|
||||||
unsigned uint_value;
|
unsigned uint_value;
|
||||||
double double_value;
|
double double_value;
|
||||||
long long_value;
|
int64_t long_value;
|
||||||
unsigned long ulong_value;
|
uint64_t ulong_value;
|
||||||
long double long_double_value;
|
long double long_double_value;
|
||||||
const void *pointer_value;
|
const void *pointer_value;
|
||||||
struct {
|
struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user