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:
Alex Zinenko 2019-07-04 13:05:28 -07:00 committed by A. Unique TensorFlower
parent abc722a582
commit fa6b49b095
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
#include "llvm/ADT/StringRef.h"
namespace mlir {
class LogicalResult;
struct LogicalResult;
class MLIRContext;
class ModuleOp;
using Module = ModuleOp;