Fix -Wswitch warning; NFC

This commit is contained in:
Aaron Ballman 2021-05-27 09:23:20 -04:00
parent b7101e218c
commit ce276b7a64
1 changed files with 3 additions and 0 deletions

View File

@ -3259,6 +3259,9 @@ void Preprocessor::HandleElifFamilyDirective(Token &ElifToken,
case tok::pp_elifndef: case tok::pp_elifndef:
Callbacks->Elifndef(ElifToken.getLocation(), ConditionRange, CI.IfLoc); Callbacks->Elifndef(ElifToken.getLocation(), ConditionRange, CI.IfLoc);
break; break;
default:
assert(false && "unexpected directive kind");
break;
} }
} }