Skip to content

Commit b1d682e

Browse files
committed
Apply clang-tidy fixes for readability-identifier-naming in IRCore.cpp (NFC)
1 parent 0d10903 commit b1d682e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/lib/Bindings/Python/IRCore.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3312,9 +3312,9 @@ void mlir::python::populateIRCore(py::module &m) {
33123312
.def_property_readonly(
33133313
"ref_operation",
33143314
[](PyInsertionPoint &self) -> py::object {
3315-
auto ref_operation = self.getRefOperation();
3316-
if (ref_operation)
3317-
return ref_operation->getObject();
3315+
auto refOperation = self.getRefOperation();
3316+
if (refOperation)
3317+
return refOperation->getObject();
33183318
return py::none();
33193319
},
33203320
"The reference operation before which new operations are "

0 commit comments

Comments
 (0)