aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
Diffstat (limited to 'AST.h')
-rw-r--r--AST.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/AST.h b/AST.h
index bedba396..f5f6a3f3 100644
--- a/AST.h
+++ b/AST.h
@@ -443,14 +443,15 @@ class VariableDeclaration: public Declaration
{
public:
VariableDeclaration(
- SourceLocation const& _location,
- ASTPointer<TypeName> const& _type,
- ASTPointer<ASTString> const& _name,
- ASTPointer<Expression> _value,
- Visibility _visibility,
- bool _isStateVar = false,
- bool _isIndexed = false,
- bool _isConstant = false):
+ SourceLocation const& _location,
+ ASTPointer<TypeName> const& _type,
+ ASTPointer<ASTString> const& _name,
+ ASTPointer<Expression> _value,
+ Visibility _visibility,
+ bool _isStateVar = false,
+ bool _isIndexed = false,
+ bool _isConstant = false
+ ):
Declaration(_location, _name, _visibility),
m_typeName(_type),
m_value(_value),