aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-10-31 20:29:32 +0800
committerChristian <c@ethdev.com>2014-10-31 20:29:32 +0800
commit9f53f1889310e92e1aa9011e1c43eda9c038fce5 (patch)
treedf87c485a14273dc925b10928f4ff435d2376cb7 /AST.h
parent5d287e7ea2e1847bb5fc4c67c520248c7060c4c6 (diff)
downloaddexon-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/AST.h b/AST.h
index e7282660..4dc44e29 100644
--- a/AST.h
+++ b/AST.h
@@ -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;