llvm-project
4a764340 - [clang-tools-extra] Use *Set::insert_range (NFC) (#132589)

Commit
270 days ago
[clang-tools-extra] Use *Set::insert_range (NFC) (#132589) DenseSet, SmallPtrSet, SmallSet, SetVector, and StringSet recently gained C++23-style insert_range. This patch replaces: Dest.insert(Src.begin(), Src.end()); with: Dest.insert_range(Src);
Parents
Loading