Commit b1d682e0 authored by Mehdi Amini's avatar Mehdi Amini
Browse files

Apply clang-tidy fixes for readability-identifier-naming in IRCore.cpp (NFC)

parent 0d109035
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3312,9 +3312,9 @@ void mlir::python::populateIRCore(py::module &m) {
      .def_property_readonly(
          "ref_operation",
          [](PyInsertionPoint &self) -> py::object {
            auto ref_operation = self.getRefOperation();
            if (ref_operation)
              return ref_operation->getObject();
            auto refOperation = self.getRefOperation();
            if (refOperation)
              return refOperation->getObject();
            return py::none();
          },
          "The reference operation before which new operations are "