diff options
author | chriseth <chris@ethereum.org> | 2018-11-12 16:14:55 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-11-12 16:15:22 +0800 |
commit | 2cc304fd3fbc4c9af1f2e220a7af90a7eb9c42fb (patch) | |
tree | 388c476e7eba7967dfa37f9109f874e0b675b307 /libsolidity | |
parent | af65bac737ce2f7c1d0311c2bcbbc12f43d122f9 (diff) | |
download | dexon-solidity-2cc304fd3fbc4c9af1f2e220a7af90a7eb9c42fb.tar.gz dexon-solidity-2cc304fd3fbc4c9af1f2e220a7af90a7eb9c42fb.tar.zst dexon-solidity-2cc304fd3fbc4c9af1f2e220a7af90a7eb9c42fb.zip |
Fix for style.
Diffstat (limited to 'libsolidity')
-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; |