Fix another problem with formatv().

llvm-svn: 286690
This commit is contained in:
Zachary Turner 2016-11-12 00:28:10 +00:00
parent fc1c405f98
commit a6f1678872
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ template <typename T>
struct use_integral_formatter
: public std::integral_constant<
bool, is_one_of<T, uint8_t, int16_t, uint16_t, int32_t, uint32_t,
int64_t, uint64_t>::value> {};
int64_t, uint64_t, int, unsigned, long, unsigned long,
long long, unsigned long long>::value> {};
template <typename T>
struct use_char_formatter