aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
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,