[flang] Fix clang build (struct/class mismatch warning)

A recent patch changed a struct into a class, but missed a
forward definition.  GCC didn't warn, but clang does.  Fix.
This commit is contained in:
peter klausler 2021-06-18 15:11:55 -07:00
parent 817218336a
commit 36f93fc594
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
namespace Fortran::runtime::typeInfo {
struct Component;
class Component;
class DerivedType {
public: