Skip to content

Commit

Permalink
Fix another problem with formatv().
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286690 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Zachary Turner committed Nov 12, 2016
1 parent 22480ff commit 672f0a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/llvm/Support/FormatProviders.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 672f0a3

Please sign in to comment.