summaryrefslogtreecommitdiff
path: root/include/flang/Sema/Scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/flang/Sema/Scope.h')
-rw-r--r--include/flang/Sema/Scope.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/flang/Sema/Scope.h b/include/flang/Sema/Scope.h
index 523db4e4bc..9448f0fbc7 100644
--- a/include/flang/Sema/Scope.h
+++ b/include/flang/Sema/Scope.h
@@ -98,8 +98,8 @@ private:
/// declaring and resolving statement labels.
///
class StmtLabelScope {
-public:
StmtLabelScope *Parent;
+public:
/// \brief Represents a usage of an undeclared statement label in
/// some statement.
@@ -133,6 +133,7 @@ private:
/// referenced statement labels in this scope.
llvm::SmallVector<ForwardDecl, 16> ForwardStmtLabelDeclsInScope;
public:
+ StmtLabelScope() : Parent(nullptr) {}
typedef StmtLabelMapTy::const_iterator decl_iterator;
decl_iterator decl_begin() const { return StmtLabelDeclsInScope.begin(); }