mirror of
https://github.com/shadps4-emu/ext-fmt.git
synced 2024-11-25 10:49:43 +00:00
Fix formatting of long long.
This commit is contained in:
parent
8308da46e6
commit
e1a02c5141
3
format.h
3
format.h
@ -164,6 +164,9 @@ struct IntTraits<int> : SignedIntTraits<int, unsigned> {};
|
||||
template <>
|
||||
struct IntTraits<long> : SignedIntTraits<long, unsigned long> {};
|
||||
|
||||
template <>
|
||||
struct IntTraits<long long> : SignedIntTraits<long long, unsigned long long> {};
|
||||
|
||||
template <typename T>
|
||||
struct IsLongDouble { enum {VALUE = 0}; };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user