diff options
author | chriseth <chris@ethereum.org> | 2018-11-12 16:55:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 16:55:32 +0800 |
commit | 09f8ff27fc576dbbd05e31471bb39c00abe90563 (patch) | |
tree | 388c476e7eba7967dfa37f9109f874e0b675b307 /libsolidity/ast/AST.h | |
parent | 405565db62e8700fea08671b0dd85225257b6c5d (diff) | |
parent | 2cc304fd3fbc4c9af1f2e220a7af90a7eb9c42fb (diff) | |
download | dexon-solidity-09f8ff27fc576dbbd05e31471bb39c00abe90563.tar dexon-solidity-09f8ff27fc576dbbd05e31471bb39c00abe90563.tar.gz dexon-solidity-09f8ff27fc576dbbd05e31471bb39c00abe90563.tar.bz2 dexon-solidity-09f8ff27fc576dbbd05e31471bb39c00abe90563.tar.lz dexon-solidity-09f8ff27fc576dbbd05e31471bb39c00abe90563.tar.xz dexon-solidity-09f8ff27fc576dbbd05e31471bb39c00abe90563.tar.zst dexon-solidity-09f8ff27fc576dbbd05e31471bb39c00abe90563.zip |
Merge pull request #5395 from ethereum/fixStyle
Fix style
Diffstat (limited to 'libsolidity/ast/AST.h')
-rw-r--r-- | libsolidity/ast/AST.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/ast/AST.h b/libsolidity/ast/AST.h index d819402e..4fd2bcb8 100644 --- a/libsolidity/ast/AST.h +++ b/libsolidity/ast/AST.h @@ -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; |