Skip to content

Commit 70ebc78

Browse files
committed
Apply clang-tidy fixes for performance-unnecessary-value-param in TransformOps.cpp (NFC)
1 parent 153661d commit 70ebc78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Transform/IR/TransformOps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1754,7 +1754,7 @@ DiagnosedSilenceableFailure
17541754
transform::MatchParamCmpIOp::apply(transform::TransformRewriter &rewriter,
17551755
transform::TransformResults &results,
17561756
transform::TransformState &state) {
1757-
auto signedAPIntAsString = [&](APInt value) {
1757+
auto signedAPIntAsString = [&](const APInt &value) {
17581758
std::string str;
17591759
llvm::raw_string_ostream os(str);
17601760
value.print(os, /*isSigned=*/true);

0 commit comments

Comments
 (0)