diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-16 21:45:11 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-16 21:45:11 +0800 |
commit | 27a89a36e10f260521d20d4e54e6d2f710953776 (patch) | |
tree | 3eabfae70200dab1b29dcdab8f27a9f9ea0c0b97 /AST.h | |
parent | ebb4d5e298cbe9d8d6bb6b1fa1d8f6f769d62fba (diff) | |
download | dexon-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.h | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -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), |