diff options
author | Kazu Hirata <kazu@google.com> | 2025-03-22 21:57:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-22 21:57:06 -0700 |
commit | 00cb966209955878cee903068333d4d2d4f7b259 (patch) | |
tree | fbed269e3bdfabd2c0a73bb6269fc1715872f24e /llvm/lib/LTO/LTO.cpp | |
parent | 441c9a9273c5d040f218986bf301c8a5c4d4c011 (diff) | |
download | llvm-00cb966209955878cee903068333d4d2d4f7b259.zip llvm-00cb966209955878cee903068333d4d2d4f7b259.tar.gz llvm-00cb966209955878cee903068333d4d2d4f7b259.tar.bz2 |
[lld] Use *Set::insert_range (NFC) (#132590)
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);
Diffstat (limited to 'llvm/lib/LTO/LTO.cpp')
0 files changed, 0 insertions, 0 deletions