aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-01-21 00:41:09 +0800
committerChristian <c@ethdev.com>2015-01-21 00:41:09 +0800
commit96db6cf905d0585530a63a7a64af3d95d088f8b8 (patch)
tree868b9241c63bd4721212452fbeaa9b77a4c0273f /AST.h
parentd854e56789c4bf2f5caca563dd0e660dababf181 (diff)
downloaddexon-solidity-96db6cf905d0585530a63a7a64af3d95d088f8b8.tar.gz
dexon-solidity-96db6cf905d0585530a63a7a64af3d95d088f8b8.tar.zst
dexon-solidity-96db6cf905d0585530a63a7a64af3d95d088f8b8.zip
Style changes.
Diffstat (limited to 'AST.h')
-rwxr-xr-xAST.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/AST.h b/AST.h
index 97ff30cf..754e9254 100755
--- a/AST.h
+++ b/AST.h
@@ -280,7 +280,8 @@ class FunctionDefinition: public Declaration
{
public:
FunctionDefinition(Location const& _location, ASTPointer<ASTString> const& _name,
- bool _isPublic, bool _isConstructor,
+ bool _isPublic,
+ bool _isConstructor,
ASTPointer<ASTString> const& _documentation,
ASTPointer<ParameterList> const& _parameters,
bool _isDeclaredConst,