Skip to content

Commit cb3bc5b

Browse files
author
Mogball
committed
[mlir] Fix build breakage on some systems
Some includes were shuffled around in LLVM support headers, causing `<vector>` to no longer be included in certain files. Depending on the system stdlib, the header might not transitively get included. Adding `<vector>` to `DialectInterface.h` fixes a build breakage on some systems
1 parent 45f4249 commit cb3bc5b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mlir/include/mlir/IR/DialectInterface.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "mlir/Support/TypeID.h"
1313
#include "llvm/ADT/DenseSet.h"
1414
#include "llvm/ADT/STLExtras.h"
15+
#include <vector>
1516

1617
namespace mlir {
1718
class Dialect;

0 commit comments

Comments
 (0)