Attempting a fix the build bots should be happier with. Amends 198804.

llvm-svn: 198805
This commit is contained in:
Aaron Ballman 2014-01-08 23:26:53 +00:00
parent 199a78935e
commit 8c7817ebb1
1 changed files with 1 additions and 2 deletions

View File

@ -1654,8 +1654,6 @@ private:
/// trailing-type-specifier)?
static bool isTypeSpecifier(DeclSpecContext DSC) {
switch (DSC) {
default:
llvm_unreachable("Missing DeclSpecContext case");
case DSC_normal:
case DSC_class:
case DSC_top_level:
@ -1666,6 +1664,7 @@ private:
case DSC_alias_declaration:
return true;
}
llvm_unreachable("Missing DeclSpecContext case");
}
/// Information on a C++0x for-range-initializer found while parsing a