Skip to content

Commit 61e4dd8

Browse files
committed
mend
1 parent 978a84a commit 61e4dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Dialect/Torch/IR/TorchOps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5605,7 +5605,7 @@ namespace {
56055605

56065606
void expand(SmallVectorImpl<int64_t> &params, int numSpatialDims) {
56075607
if (params.size() == 1) {
5608-
for (auto [[maybe_unused]] _ : llvm::seq<int>(0, numSpatialDims - 1)) {
5608+
for ([[maybe_unused]] int dim : llvm::seq<int>(0, numSpatialDims - 1)) {
56095609
params.push_back(params[0]);
56105610
}
56115611
}

0 commit comments

Comments
 (0)