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

@@ -436,8 +436,8 @@ unsigned CompoundExpressionAST::lastToken() const
{
if (rparen_token)
return rparen_token + 1;
else if (compoundStatement)
return compoundStatement->lastToken();
else if (statement)
return statement->lastToken();
else
return lparen_token + 1;
}