forked from OSchip/llvm-project
[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:
parent
817218336a
commit
36f93fc594
|
@ -20,7 +20,7 @@
|
|||
|
||||
namespace Fortran::runtime::typeInfo {
|
||||
|
||||
struct Component;
|
||||
class Component;
|
||||
|
||||
class DerivedType {
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue