Merge pull request #5395 from ethereum/fixStyle

Fix style
This commit is contained in:
chriseth 2018-11-12 09:55:32 +01:00 committed by GitHub
commit 09f8ff27fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View File

@ -1191,11 +1191,11 @@ public:
Statement const& body() const { return *m_body; }
private:
/// For statement's initialization expression. for(XXX; ; ). Can be empty
/// For statement's initialization expression. for (XXX; ; ). Can be empty
ASTPointer<Statement> m_initExpression;
/// For statement's condition expression. for(; XXX ; ). Can be empty
/// For statement's condition expression. for (; XXX ; ). Can be empty
ASTPointer<Expression> m_condExpression;
/// For statement's loop expression. for(;;XXX). Can be empty
/// For statement's loop expression. for (;;XXX). Can be empty
ASTPointer<ExpressionStatement> m_loopExpression;
/// The body of the loop
ASTPointer<Statement> m_body;