llvm-project
cb80b26e
- [clang] Use *Set::insert_range (NFC) (#133357)
Go
Login via GitHub
Home
Pricing
FAQ
Install
Login
via GitHub
Commit
View On
GitHub
Commit
333 days ago
[clang] Use *Set::insert_range (NFC) (#133357) We can use *Set::insert_range to collapse: for (auto Elem : Range) Set.insert(E); down to: Set.insert_range(Range); In some cases, we can further fold that into the set declaration.
References
#133357 - [clang] Use *Set::insert_range (NFC)
Author
kazutakahirata
Parents
a1bb7507
Loading