mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-13 18:39:35 +00:00
Fix the build on MSVC.
This commit is contained in:
parent
4d8cc4828a
commit
9fc0574715
4
format.h
4
format.h
@ -143,10 +143,10 @@ template <>
|
|||||||
struct IntTraits<unsigned> : UnsignedIntTraits<unsigned> {};
|
struct IntTraits<unsigned> : UnsignedIntTraits<unsigned> {};
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
struct IntTraits<long> : SignedIntTraits<long, unsigned long> {};
|
struct IntTraits<int64_t> : SignedIntTraits<int64_t, uint64_t> {};
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
struct IntTraits<unsigned long> : UnsignedIntTraits<unsigned long> {};
|
struct IntTraits<uint64_t> : UnsignedIntTraits<uint64_t> {};
|
||||||
|
|
||||||
class ArgInserter;
|
class ArgInserter;
|
||||||
class FormatterProxy;
|
class FormatterProxy;
|
||||||
|
Loading…
Reference in New Issue
Block a user