[clang] [llvm] [Sanitizer] Convert SpecialCaseList::Sections from StringMap to vector. (PR #140127)

Vitaly Buka via cfe-commits cfe-commits at lists.llvm.org
Thu May 15 23:54:27 PDT 2025


================
@@ -132,14 +132,15 @@ class SpecialCaseList {
   using SectionEntries = StringMap<StringMap<Matcher>>;
 
   struct Section {
-    Section(std::unique_ptr<Matcher> M) : SectionMatcher(std::move(M)){};
-    Section() : Section(std::make_unique<Matcher>()) {}
+    Section(std::unique_ptr<Matcher> M) : SectionMatcher(std::move(M)) {};
----------------
vitalybuka wrote:

Try  to avoid mixing formatting unrelated changes with logic changes.
Either revert or move into a new PR

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


More information about the cfe-commits mailing list