diff options
author | Christian <c@ethdev.com> | 2014-10-31 20:29:32 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-10-31 20:29:32 +0800 |
commit | 9f53f1889310e92e1aa9011e1c43eda9c038fce5 (patch) | |
tree | df87c485a14273dc925b10928f4ff435d2376cb7 /AST.h | |
parent | 5d287e7ea2e1847bb5fc4c67c520248c7060c4c6 (diff) | |
download | dexon-solidity-9f53f1889310e92e1aa9011e1c43eda9c038fce5.tar.gz dexon-solidity-9f53f1889310e92e1aa9011e1c43eda9c038fce5.tar.zst dexon-solidity-9f53f1889310e92e1aa9011e1c43eda9c038fce5.zip |
Corrected doxygen post comments.
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -345,7 +345,7 @@ public: private: ASTPointer<Expression> m_condition; ASTPointer<Statement> m_trueBody; - ASTPointer<Statement> m_falseBody; //< "else" part, optional + ASTPointer<Statement> m_falseBody; ///< "else" part, optional }; /** @@ -400,7 +400,7 @@ public: void setFunctionReturnParameters(ParameterList& _parameters) { m_returnParameters = &_parameters; } private: - ASTPointer<Expression> m_expression; //< value to return, optional + ASTPointer<Expression> m_expression; ///< value to return, optional /// Pointer to the parameter list of the function, filled by the @ref NameAndTypeResolver. ParameterList* m_returnParameters; |