Skip to content

Commit 4345b20

Browse files
committed
Apply clang-tidy fixes for llvm-qualified-auto in TestConstantFold.cpp (NFC)
1 parent 6b72c37 commit 4345b20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/lib/Transforms/TestConstantFold.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ struct TestConstantFold : public PassWrapper<TestConstantFold, OperationPass<>>,
3232
existingConstants.push_back(op);
3333
}
3434
void notifyOperationRemoved(Operation *op) override {
35-
auto it = llvm::find(existingConstants, op);
35+
auto *it = llvm::find(existingConstants, op);
3636
if (it != existingConstants.end())
3737
existingConstants.erase(it);
3838
}

0 commit comments

Comments
 (0)