Skip to content

Commit e9756c7

Browse files
committed
mend
1 parent bfe76ea commit e9756c7

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
@@ -5621,7 +5621,7 @@ namespace {
56215621

56225622
void expand(SmallVectorImpl<int64_t> &params, int numSpatialDims) {
56235623
if (params.size() == 1) {
5624-
for (auto [[maybe_unused]] _ : llvm::seq<int>(0, numSpatialDims - 1)) {
5624+
for ([[maybe_unused]] int dim : llvm::seq<int>(0, numSpatialDims - 1)) {
56255625
params.push_back(params[0]);
56265626
}
56275627
}

0 commit comments

Comments
 (0)