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

@@ -963,13 +963,13 @@ class CPLUSPLUS_EXPORT CompoundExpressionAST: public ExpressionAST
{
public:
unsigned lparen_token;
CompoundStatementAST *compoundStatement;
CompoundStatementAST *statement;
unsigned rparen_token;
public:
CompoundExpressionAST()
: lparen_token(0)
, compoundStatement(0)
, statement(0)
, rparen_token(0)
{}