[Mlir-commits] [llvm] [mlir] [ADT] Use a dedicated empty type for StringSet (NFC) (PR #165967)

Kazu Hirata llvmlistbot at llvm.org
Sat Nov 1 09:16:53 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)
----------------
kazutakahirata wrote:

Fixed.

https://github.com/llvm/llvm-project/pull/165967


More information about the Mlir-commits mailing list