diff options
Diffstat (limited to 'Scope.h')
-rw-r--r-- | Scope.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ namespace solidity class Scope { public: - explicit Scope(Scope* _outerScope = nullptr) : m_outerScope(_outerScope) {} + explicit Scope(Scope* _outerScope = nullptr): m_outerScope(_outerScope) {} /// Registers the declaration in the scope unless its name is already declared. Returns true iff /// it was not yet declared. bool registerDeclaration(Declaration& _declaration); |