[Mlir-commits] [llvm] [mlir] [ADT] Use a dedicated empty type for StringSet (NFC) (PR #165967)
    Matt Arsenault 
    llvmlistbot at llvm.org
       
    Fri Oct 31 22:25:39 PDT 2025
    
    
  
================
@@ -2215,7 +2215,7 @@ DataAggregator::writeAggregatedFile(StringRef OutputFilename) const {
     OutFile << "boltedcollection\n";
   if (opts::BasicAggregation) {
     OutFile << "no_lbr";
-    for (const StringMapEntry<std::nullopt_t> &Entry : EventNames)
+    for (const auto &Entry : EventNames)
----------------
arsenm wrote:
no auto? 
https://github.com/llvm/llvm-project/pull/165967
    
    
More information about the Mlir-commits
mailing list