1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix build error - 'default label in switch which covers all enumeration values'

llvm-svn: 322610
This commit is contained in:
Aaron Smith 2018-01-17 01:49:01 +00:00
parent a4bf47e131
commit a0861c6a1a

View File

@ -89,7 +89,5 @@ StringRef BuiltinDumper::getTypeName(const PDBSymbolTypeBuiltin &Symbol) {
return "HRESULT";
case PDB_BuiltinType::None:
return "...";
default:
return "void";
}
}