[NFC] clang-tidy fix

This commit is contained in:
Andrew Lenharth 2023-12-04 12:54:51 -06:00
parent 79baf6c364
commit 43371fde8c
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ static void lowerModuleBody(FModuleOp mod,
}
// Zero Width ports may have dangling connects since they are not preserved
// and do not have bounce wires.
for (auto use : inst->getUsers()) {
for (auto *use : inst->getUsers()) {
assert(isa<StrictConnectOp>(use) || isa<ConnectOp>(use));
use->erase();
}