From 933fbd7d60006092cd8846cc164188f7ad41460f Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 28 Oct 2014 16:51:26 +0100 Subject: Asterisk-syntax for doxygen class documentation. --- ASTPrinter.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ASTPrinter.h') diff --git a/ASTPrinter.h b/ASTPrinter.h index 74e0837f..97256c05 100644 --- a/ASTPrinter.h +++ b/ASTPrinter.h @@ -30,7 +30,9 @@ namespace dev namespace solidity { -/// Pretty-printer for the abstract syntax tree (the "pretty" is arguable) for debugging purposes. +/** + * Pretty-printer for the abstract syntax tree (the "pretty" is arguable) for debugging purposes. + */ class ASTPrinter: public ASTVisitor { public: -- cgit v1.2.3 From 5d287e7ea2e1847bb5fc4c67c520248c7060c4c6 Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 29 Oct 2014 19:41:07 +0100 Subject: Further const placement changes. --- ASTPrinter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ASTPrinter.h') diff --git a/ASTPrinter.h b/ASTPrinter.h index 97256c05..d788ba76 100644 --- a/ASTPrinter.h +++ b/ASTPrinter.h @@ -38,7 +38,7 @@ class ASTPrinter: public ASTVisitor public: /// Create a printer for the given abstract syntax tree. If the source is specified, /// the corresponding parts of the source are printed with each node. - ASTPrinter(ASTPointer const& _ast, const std::string& _source = std::string()); + ASTPrinter(ASTPointer const& _ast, std::string const& _source = std::string()); /// Output the string representation of the AST to _stream. void print(std::ostream& _stream); -- cgit v1.2.3