summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/CheckStatement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/cplusplus/CheckStatement.cpp')
-rw-r--r--src/shared/cplusplus/CheckStatement.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/shared/cplusplus/CheckStatement.cpp b/src/shared/cplusplus/CheckStatement.cpp
index ec9f6590e2..b02ba83749 100644
--- a/src/shared/cplusplus/CheckStatement.cpp
+++ b/src/shared/cplusplus/CheckStatement.cpp
@@ -107,8 +107,19 @@ bool CheckStatement::visit(CompoundStatementAST *ast)
ast->symbol = block;
_scope->enterSymbol(block);
Scope *previousScope = switchScope(block->members());
+ StatementAST *previousStatement = 0;
for (StatementListAST *it = ast->statement_list; it; it = it->next) {
- semantic()->check(it->value, _scope);
+ StatementAST *statement = it->value;
+ semantic()->check(statement, _scope);
+
+ if (statement && previousStatement) {
+ ExpressionStatementAST *expressionStatement = statement->asExpressionStatement();
+ CompoundStatementAST *compoundStatement = previousStatement->asCompoundStatement();
+ if (expressionStatement && ! expressionStatement->expression && compoundStatement && compoundStatement->rbrace_token)
+ translationUnit()->warning(compoundStatement->rbrace_token, "unnecessary semicolon after block");
+ }
+
+ previousStatement = statement;
}
(void) switchScope(previousScope);
return false;