Skip to content

Commit 5e458f5

Browse files
committed
Apply clang-tidy fixes for llvm-qualified-auto in IRNumbering.cpp (NFC)
1 parent a2e5720 commit 5e458f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Bytecode/Writer/IRNumbering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ struct NumberingResourceBuilder : public AsmResourceBuilder {
557557
void numberEntry(StringRef key) {
558558
// TODO: We could pre-number resource key strings here as well.
559559

560-
auto it = dialect->resourceMap.find(key);
560+
auto *it = dialect->resourceMap.find(key);
561561
if (it != dialect->resourceMap.end()) {
562562
it->second->number = nextResourceID++;
563563
it->second->isDeclaration = false;

0 commit comments

Comments
 (0)