Skip to content

Commit 0d10903

Browse files
committed
Apply clang-tidy fixes for misc-include-cleaner in IRCore.cpp (NFC)
1 parent be03b14 commit 0d10903

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

mlir/lib/Bindings/Python/IRCore.cpp

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,36 @@
1717
#include "mlir-c/Diagnostics.h"
1818
#include "mlir-c/IR.h"
1919
#include "mlir-c/Support.h"
20-
#include "mlir/Bindings/Python/PybindAdaptors.h"
20+
#include "mlir/Support/LLVM.h"
2121
#include "llvm/ADT/ArrayRef.h"
22+
#include "llvm/ADT/Hashing.h"
23+
#include "llvm/ADT/STLExtras.h"
2224
#include "llvm/ADT/SmallVector.h"
23-
25+
#include "llvm/ADT/StringRef.h"
26+
#include "llvm/ADT/Twine.h"
27+
28+
#include <cassert>
29+
#include <cstddef>
30+
#include <cstdint>
31+
#include <cstdio>
32+
#include <exception>
33+
#include <funcobject.h>
34+
#include <functional>
2435
#include <optional>
36+
#include <pybind11/attr.h>
37+
#include <pybind11/cast.h>
38+
#include <pybind11/detail/common.h>
39+
#include <pybind11/detail/type_caster_base.h>
40+
#include <pybind11/gil.h>
41+
#include <pybind11/pybind11.h>
42+
#include <pybind11/pytypes.h>
43+
#include <pyerrors.h>
44+
#include <stdexcept>
45+
#include <string>
46+
#include <string_view>
47+
#include <tuple>
2548
#include <utility>
49+
#include <vector>
2650

2751
namespace py = pybind11;
2852
using namespace py::literals;

0 commit comments

Comments
 (0)