mirror of
https://github.com/fmtlib/fmt.git
synced 2025-08-03 12:44:49 +02:00
Fix formatting of long long.
This commit is contained in:
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}; };
|
||||
|
||||
|
Reference in New Issue
Block a user