[Sema] Specify the underlying type for an enum. NFC.

llvm-svn: 268113
This commit is contained in:
George Burgess IV 2016-04-29 21:32:53 +00:00
parent f74e93b600
commit f23ce3609b
1 changed files with 1 additions and 1 deletions

View File

@ -7257,7 +7257,7 @@ class BuiltinOperatorOverloadBuilder {
// (we could precompute SLL x UI for all known platforms, but it's
// better not to make any assumptions).
// We assume that int128 has a higher rank than long long on all platforms.
enum PromotedType {
enum PromotedType : int8_t {
Dep=-1,
Flt, Dbl, LDbl, SI, SL, SLL, S128, UI, UL, ULL, U128
};