aboutsummaryrefslogtreecommitdiffstats
path: root/ASTPrinter.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-10-30 02:41:07 +0800
committerChristian <c@ethdev.com>2014-10-30 02:41:07 +0800
commit5d287e7ea2e1847bb5fc4c67c520248c7060c4c6 (patch)
treed580aa8d21a94c816760f775f92187a91bd3673d /ASTPrinter.h
parent62822ffd92cfef4b76cea44783c67278950a7e79 (diff)
downloaddexon-solidity-5d287e7ea2e1847bb5fc4c67c520248c7060c4c6.tar
dexon-solidity-5d287e7ea2e1847bb5fc4c67c520248c7060c4c6.tar.gz
dexon-solidity-5d287e7ea2e1847bb5fc4c67c520248c7060c4c6.tar.bz2
dexon-solidity-5d287e7ea2e1847bb5fc4c67c520248c7060c4c6.tar.lz
dexon-solidity-5d287e7ea2e1847bb5fc4c67c520248c7060c4c6.tar.xz
dexon-solidity-5d287e7ea2e1847bb5fc4c67c520248c7060c4c6.tar.zst
dexon-solidity-5d287e7ea2e1847bb5fc4c67c520248c7060c4c6.zip
Further const placement changes.
Diffstat (limited to 'ASTPrinter.h')
-rw-r--r--ASTPrinter.h2
1 files changed, 1 insertions, 1 deletions
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<ASTNode> const& _ast, const std::string& _source = std::string());
+ ASTPrinter(ASTPointer<ASTNode> const& _ast, std::string const& _source = std::string());
/// Output the string representation of the AST to _stream.
void print(std::ostream& _stream);