From 75f95ea1b71b6d345ef8f9aacdd11ca8b1441e54 Mon Sep 17 00:00:00 2001 From: Tim Keith Date: Thu, 12 Apr 2018 14:33:50 -0700 Subject: [PATCH] [flang] Fix integration problem between PR flang-compiler/f18#51 and PR flang-compiler/f18#53. Stephane added an access that returned ComponentArraySpec and meanwhile I renamed it to ArraySpec. Original-commit: flang-compiler/f18@b8e47bc7a52861ea388ee3a19e44221656e62166 Reviewed-on: https://github.com/flang-compiler/f18/pull/54 --- flang/lib/semantics/type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flang/lib/semantics/type.h b/flang/lib/semantics/type.h index 8308bcb..b4297d6 100644 --- a/flang/lib/semantics/type.h +++ b/flang/lib/semantics/type.h @@ -351,7 +351,7 @@ public: const DeclTypeSpec &type() const { return type_; } const Name &name() const { return name_; } const Attrs &attrs() const { return attrs_; } - const ComponentArraySpec &shape() const { return arraySpec_; } + const ArraySpec &shape() const { return arraySpec_; } private: const DeclTypeSpec type_; -- 2.7.4