[clangd] Silence GCC warning about falling off a fully covered switch.

llvm-svn: 295196
This commit is contained in:
Benjamin Kramer 2017-02-15 16:58:44 +00:00
parent d811bdd61a
commit fbe32f59c2
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ static int getSeverity(DiagnosticsEngine::Level L) {
case DiagnosticsEngine::Ignored:
return 0;
}
llvm_unreachable("Unknown diagnostic level!");
}
ASTManager::ASTManager(JSONOutput &Output, DocumentStore &Store)