Skip to content

Commit 8344a53

Browse files
committed
[MLIR] Apply clang-tidy fixes for performance-move-const-arg in IRCore.cpp (NFC)
1 parent e3b0e92 commit 8344a53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Bindings/Python/IRCore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2105,7 +2105,7 @@ nb::object PyOpView::buildGeneric(
21052105
// Delegate to create.
21062106
return PyOperation::create(name,
21072107
/*results=*/std::move(resultTypes),
2108-
/*operands=*/std::move(operands),
2108+
/*operands=*/operands,
21092109
/*attributes=*/std::move(attributes),
21102110
/*successors=*/std::move(successors),
21112111
/*regions=*/*regions, location, maybeIp,

0 commit comments

Comments
 (0)