Skip to content

Commit dc81dfa

Browse files
committed
Apply clang-tidy fixes for misc-include-cleaner in IRInterfaces.cpp (NFC)
1 parent b1d682e commit dc81dfa

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

mlir/lib/Bindings/Python/IRInterfaces.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9+
#include <cstdint>
910
#include <optional>
11+
#include <pybind11/cast.h>
12+
#include <pybind11/detail/common.h>
13+
#include <pybind11/pybind11.h>
14+
#include <pybind11/pytypes.h>
15+
#include <string>
1016
#include <utility>
17+
#include <vector>
1118

1219
#include "IRModule.h"
1320
#include "mlir-c/BuiltinAttributes.h"
21+
#include "mlir-c/IR.h"
1422
#include "mlir-c/Interfaces.h"
23+
#include "mlir-c/Support.h"
1524
#include "llvm/ADT/STLExtras.h"
25+
#include "llvm/ADT/SmallVector.h"
1626

1727
namespace py = pybind11;
1828

0 commit comments

Comments
 (0)