Renamed the CompoundExpressionAST::compoundStatement.

This commit is contained in:
Roberto Raggi
2010-03-23 10:22:41 +01:00
parent 0d3dfdbc39
commit 6f80219d3e
8 changed files with 15 additions and 15 deletions

View File

@@ -208,7 +208,7 @@ void BaseSpecifierAST::accept0(ASTVisitor *visitor)
void CompoundExpressionAST::accept0(ASTVisitor *visitor)
{
if (visitor->visit(this)) {
accept(compoundStatement, visitor);
accept(statement, visitor);
}
visitor->endVisit(this);
}