Fix warning about covered switch default.

llvm-svn: 311129
This commit is contained in:
Zachary Turner 2017-08-17 22:20:15 +00:00
parent a096b12628
commit 4c432b202f
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ using namespace llvm::codeview;
using namespace llvm::pdb;
static std::string getSymbolKindName(SymbolKind K) {
switch (K) {
switch (uint32_t(K)) {
#define SYMBOL_RECORD(EnumName, value, name) \
case EnumName: \
return #EnumName;