diff options
author | Kazu Hirata <kazu@google.com> | 2025-03-24 22:42:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-24 22:42:04 -0700 |
commit | fac8fe9cf983ef6abee345d18850f1d4b925b519 (patch) | |
tree | 4338eca127caa6f947ac532447b8bfd746cc7765 /lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h | |
parent | 75210df5a2dd6bd9b6fb9d8fbaea27f748c4c41e (diff) | |
download | llvm-fac8fe9cf983ef6abee345d18850f1d4b925b519.zip llvm-fac8fe9cf983ef6abee345d18850f1d4b925b519.tar.gz llvm-fac8fe9cf983ef6abee345d18850f1d4b925b519.tar.bz2 |
[Target] Use *Set::insert_range (NFC) (#132879)
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.
Diffstat (limited to 'lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h')
0 files changed, 0 insertions, 0 deletions