aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-16 21:45:11 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-16 21:45:11 +0800
commit27a89a36e10f260521d20d4e54e6d2f710953776 (patch)
tree3eabfae70200dab1b29dcdab8f27a9f9ea0c0b97 /AST.h
parentebb4d5e298cbe9d8d6bb6b1fa1d8f6f769d62fba (diff)
downloaddexon-solidity-27a89a36e10f260521d20d4e54e6d2f710953776.tar.gz
dexon-solidity-27a89a36e10f260521d20d4e54e6d2f710953776.tar.zst
dexon-solidity-27a89a36e10f260521d20d4e54e6d2f710953776.zip
restyleing
removed unnecessary check
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),