Kazu Hirata
599005686a
[llvm] Use *Set::insert_range (NFC) ( #132325 )
...
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);
This patch does not touch custom begin like succ_begin for now.
2025-03-20 22:24:06 -07:00
..
2024-11-03 07:03:02 -08:00
2024-11-03 07:03:02 -08:00
2024-06-28 14:30:47 +02:00
2025-03-15 16:10:19 -07:00
2024-11-11 11:38:36 -08:00
2024-12-24 18:37:46 -08:00
2025-03-15 00:46:17 -07:00
2024-07-01 13:55:58 +02:00
2025-02-27 01:45:19 -08:00
2025-03-15 00:46:17 -07:00
2024-08-04 00:41:29 -07:00
2024-06-26 16:49:00 -07:00
2024-12-16 10:24:09 +03:00
2025-03-20 22:24:06 -07:00
2024-11-13 18:51:34 -08:00
2025-03-20 22:24:06 -07:00
2025-03-11 09:43:14 -04:00
2025-02-27 08:07:30 -08:00
2024-09-26 12:30:06 -06:00
2024-09-04 11:46:01 -07:00
2024-09-04 11:46:01 -07:00
2025-03-07 14:23:05 -08:00
2025-02-24 10:11:53 -08:00
2025-02-19 08:20:21 -08:00
2024-07-01 13:55:58 +02:00
2024-07-01 13:55:58 +02:00
2025-01-16 17:00:06 +01:00
2025-01-21 16:29:23 -08:00
2024-07-01 13:55:58 +02:00
2025-03-07 09:07:47 -08:00