lint: empty if statement

This commit is contained in:
Kurtis Rader
2016-11-01 20:42:02 -07:00
parent 60c47deca9
commit 71e69b6d75
8 changed files with 17 additions and 20 deletions

View File

@@ -988,7 +988,7 @@ bool parse_ll_t::top_node_handle_terminal_types(parse_token_t token) {
} else if (stack_top.keyword == parse_keyword_end &&
token.type == parse_token_type_terminate &&
this->report_error_for_unclosed_block()) {
// Handled by report_error_for_unclosed_block.
; // handled by report_error_for_unclosed_block
} else {
const wcstring expected = stack_top.user_presentable_description();
this->parse_error_unexpected_token(expected.c_str(), token);