diff options
author | Christian <c@ethdev.com> | 2014-10-28 23:57:20 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-10-28 23:57:20 +0800 |
commit | 7bb3311be6ba971d05482114df323f1d015e96a9 (patch) | |
tree | ba38f4082dad2b1e99bf95146fe2c74361917a01 | |
parent | 933fbd7d60006092cd8846cc164188f7ad41460f (diff) | |
download | dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.gz dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.bz2 dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.lz dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.xz dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.tar.zst dexon-solidity-7bb3311be6ba971d05482114df323f1d015e96a9.zip |
Forgot some asterisks.
-rw-r--r-- | ASTVisitor.h | 14 | ||||
-rw-r--r-- | BaseTypes.h | 6 |
2 files changed, 12 insertions, 8 deletions
diff --git a/ASTVisitor.h b/ASTVisitor.h index a667ad39..e4818ee2 100644 --- a/ASTVisitor.h +++ b/ASTVisitor.h @@ -30,12 +30,14 @@ namespace dev namespace solidity { -/// Visitor interface for the abstract syntax tree. This class is tightly bound to the -/// implementation of @ref ASTNode::accept and its overrides. After a call to -/// @ref ASTNode::accept, the function visit for the appropriate parameter is called and then -/// (if it returns true) this continues recursively for all child nodes in document order -/// (there is an exception for contracts). After all child nodes have been visited, endVisit is -/// called for the node. +/** + * Visitor interface for the abstract syntax tree. This class is tightly bound to the + * implementation of @ref ASTNode::accept and its overrides. After a call to + * @ref ASTNode::accept, the function visit for the appropriate parameter is called and then + * (if it returns true) this continues recursively for all child nodes in document order + * (there is an exception for contracts). After all child nodes have been visited, endVisit is + * called for the node. + */ class ASTVisitor { public: diff --git a/BaseTypes.h b/BaseTypes.h index cfc14c7e..d1ffd7bb 100644 --- a/BaseTypes.h +++ b/BaseTypes.h @@ -29,8 +29,10 @@ namespace dev namespace solidity { -/// Representation of an interval of source positions. -/// The interval includes start and excludes end. +/** + * Representation of an interval of source positions. + * The interval includes start and excludes end. + */ struct Location { Location(int _start, int _end): start(_start), end(_end) { } |