forked from OSchip/llvm-project
Comment parsing: add a missing 'else'. Found by inspection.
No testcase because we were just building an extra AST node and eventually throwing it away, so it did not affect correctness. llvm-svn: 170563
This commit is contained in:
parent
ae9d8aeb2b
commit
696d7226d6
|
@ -318,7 +318,7 @@ BlockCommandComment *Parser::parseBlockCommand() {
|
|||
PC = S.actOnParamCommandStart(Tok.getLocation(),
|
||||
Tok.getEndLocation(),
|
||||
Tok.getCommandID());
|
||||
} if (Info->IsTParamCommand) {
|
||||
} else if (Info->IsTParamCommand) {
|
||||
IsTParam = true;
|
||||
TPC = S.actOnTParamCommandStart(Tok.getLocation(),
|
||||
Tok.getEndLocation(),
|
||||
|
|
Loading…
Reference in New Issue