Skip to content

Commit 83d7eca

Browse files
joker-ephPriyanshu3820
authored andcommitted
[MLIR] Apply clang-tidy fixes for llvm-qualified-auto in ValueBoundsOpInterface.cpp (NFC)
1 parent f3078e1 commit 83d7eca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Interfaces/ValueBoundsOpInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ ValueBoundsConstraintSet::Variable::Variable(AffineMap map,
129129
assert(var.map.getNumDims() == 0 && "expected only symbols");
130130
SmallVector<AffineExpr> symReplacements;
131131
for (auto valueDim : var.mapOperands) {
132-
auto it = llvm::find(this->mapOperands, valueDim);
132+
auto *it = llvm::find(this->mapOperands, valueDim);
133133
if (it != this->mapOperands.end()) {
134134
// There is already a symbol for this operand.
135135
symReplacements.push_back(b.getAffineSymbolExpr(

0 commit comments

Comments
 (0)