forked from OSchip/llvm-project
Fix -Wswitch warning; NFC
This commit is contained in:
parent
b7101e218c
commit
ce276b7a64
|
@ -3259,6 +3259,9 @@ void Preprocessor::HandleElifFamilyDirective(Token &ElifToken,
|
|||
case tok::pp_elifndef:
|
||||
Callbacks->Elifndef(ElifToken.getLocation(), ConditionRange, CI.IfLoc);
|
||||
break;
|
||||
default:
|
||||
assert(false && "unexpected directive kind");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue