forked from OSchip/llvm-project
Fix another incorrect forward declaration of LogicalResult
LogicalResult is a struct and the Windows build is unhappy about it being forward-declared as class. PiperOrigin-RevId: 256578230
This commit is contained in:
parent
abc722a582
commit
fa6b49b095
|
@ -25,7 +25,7 @@
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
|
||||||
namespace mlir {
|
namespace mlir {
|
||||||
class LogicalResult;
|
struct LogicalResult;
|
||||||
class MLIRContext;
|
class MLIRContext;
|
||||||
class ModuleOp;
|
class ModuleOp;
|
||||||
using Module = ModuleOp;
|
using Module = ModuleOp;
|
||||||
|
|
Loading…
Reference in New Issue