From 92eb04c6eccba8b6d7c5c02e5ca2084d9e4fecf6 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 5 Jun 2015 14:45:47 +0200 Subject: Style. --- AST.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'AST.h') diff --git a/AST.h b/AST.h index d7534712..578709c1 100644 --- a/AST.h +++ b/AST.h @@ -524,11 +524,11 @@ protected: Visibility getDefaultVisibility() const override { return Visibility::Internal; } private: - ASTPointer m_typeName; ///< can be empty ("var") - ASTPointer m_value; ///< the assigned value, can be missing - bool m_isStateVariable; ///< Whether or not this is a contract state variable - bool m_isIndexed; ///< Whether this is an indexed variable (used by events). - bool m_isConstant; ///< Whether the variable is a compile-time constant. + ASTPointer m_typeName; ///< can be empty ("var") + ASTPointer m_value; ///< the assigned value, can be missing + bool m_isStateVariable; ///< Whether or not this is a contract state variable + bool m_isIndexed; ///< Whether this is an indexed variable (used by events). + bool m_isConstant; ///< Whether the variable is a compile-time constant. Location m_location; ///< Location of the variable if it is of reference type. std::shared_ptr m_type; ///< derived type, initially empty -- cgit