From 27a89a36e10f260521d20d4e54e6d2f710953776 Mon Sep 17 00:00:00 2001 From: Liana Husikyan Date: Mon, 16 Mar 2015 14:45:11 +0100 Subject: restyleing removed unnecessary check --- AST.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'AST.h') 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 const& _type, - ASTPointer const& _name, - ASTPointer _value, - Visibility _visibility, - bool _isStateVar = false, - bool _isIndexed = false, - bool _isConstant = false): + SourceLocation const& _location, + ASTPointer const& _type, + ASTPointer const& _name, + ASTPointer _value, + Visibility _visibility, + bool _isStateVar = false, + bool _isIndexed = false, + bool _isConstant = false + ): Declaration(_location, _name, _visibility), m_typeName(_type), m_value(_value), -- cgit v1.2.3