diff options
author | Christian <c@ethdev.com> | 2015-01-21 00:41:09 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-21 00:41:09 +0800 |
commit | 96db6cf905d0585530a63a7a64af3d95d088f8b8 (patch) | |
tree | 868b9241c63bd4721212452fbeaa9b77a4c0273f /AST.h | |
parent | d854e56789c4bf2f5caca563dd0e660dababf181 (diff) | |
download | dexon-solidity-96db6cf905d0585530a63a7a64af3d95d088f8b8.tar.gz dexon-solidity-96db6cf905d0585530a63a7a64af3d95d088f8b8.tar.zst dexon-solidity-96db6cf905d0585530a63a7a64af3d95d088f8b8.zip |
Style changes.
Diffstat (limited to 'AST.h')
-rwxr-xr-x | AST.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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, |