Skip to content

Commit a2e5720

Browse files
committed
Apply clang-tidy fixes for llvm-qualified-auto in CallGraph.cpp (NFC)
1 parent 6db6e7e commit a2e5720

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Analysis/CallGraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ CallGraphNode *CallGraph::getOrAddNode(Region *region,
133133
/// Lookup a call graph node for the given region, or nullptr if none is
134134
/// registered.
135135
CallGraphNode *CallGraph::lookupNode(Region *region) const {
136-
auto it = nodes.find(region);
136+
const auto *it = nodes.find(region);
137137
return it == nodes.end() ? nullptr : it->second.get();
138138
}
139139

0 commit comments

Comments
 (0)