Skip to content

Commit ef8062e

Browse files
committed
[mlir][Target][Cpp] Fix include.
mlir/include/mlir/Target/Cpp/CppEmitter.h:27:45: error: unknown type name 'raw_ostream'; did you mean 'llvm::raw_ostream'? 27 | LogicalResult translateToCpp(Operation *op, raw_ostream &os, | ^~~~~~~~~~~ | llvm::raw_ostream
1 parent c7cf135 commit ef8062e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Target/Cpp/CppEmitter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#ifndef MLIR_TARGET_CPP_CPPEMITTER_H
1414
#define MLIR_TARGET_CPP_CPPEMITTER_H
1515

16-
#include "llvm/Support/raw_ostream.h"
16+
#include "mlir/Support/LLVM.h"
1717

1818
namespace mlir {
1919
struct LogicalResult;

0 commit comments

Comments
 (0)