Skip to content

Commit 2af8178

Browse files
committed
[MLIR] Apply clang-tidy fixes for llvm-qualified-auto in Query.cpp (NFC)
1 parent 9472225 commit 2af8178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Query/Query.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ LogicalResult MatchQuery::run(llvm::raw_ostream &os, QuerySession &qs) const {
141141
os << "\n";
142142
for (auto &results : matches) {
143143
os << "Match #" << ++matchCount << ":\n\n";
144-
for (auto op : results.matchedOps) {
144+
for (Operation *op : results.matchedOps) {
145145
if (op == results.rootOp) {
146146
finder.printMatch(os, qs, op, "root");
147147
} else {

0 commit comments

Comments
 (0)