Kazu Hirata
ec07d8e941
[clang-tidy] Use SmallPtrSet directly instead of SmallSet (NFC) ( #154679 )
...
I'm trying to remove the redirection in SmallSet.h:
template <typename PointeeType, unsigned N>
class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N>
{};
to make it clear that we are using SmallPtrSet. There are only
handful places that rely on this redirection.
This patch replaces SmallSet to SmallPtrSet where the element type is
a pointer.
2025-08-21 15:03:16 -07:00
..
2025-07-08 20:48:51 +03:00
2025-06-10 23:23:37 +03:00
2025-06-10 23:23:37 +03:00
2025-07-11 17:17:59 +03:00
2025-08-21 15:03:16 -07:00
2025-06-10 23:23:37 +03:00
2025-06-10 23:23:37 +03:00
2025-08-17 11:42:38 +02:00
2025-06-10 23:23:37 +03:00
2025-08-09 05:06:53 -03:00
2025-08-09 05:06:53 -03:00
2025-06-14 10:55:42 +03:00
2025-06-10 23:23:37 +03:00
2025-07-28 11:18:52 -07:00
2025-06-10 23:23:37 +03:00
2025-08-19 19:28:41 -03:00
2025-08-09 05:06:53 -03:00
2025-06-10 23:23:37 +03:00
2025-07-11 17:17:59 +03:00
2025-06-10 23:23:37 +03:00
2025-08-09 05:06:53 -03:00
2025-07-31 15:07:35 -04:00
2025-08-09 05:06:53 -03:00
2025-08-10 12:20:51 +03:00
2025-08-19 21:47:51 +03:00
2025-08-09 05:06:53 -03:00
2025-06-10 23:23:37 +03:00
2025-08-03 13:18:24 +03:00
2025-08-18 22:49:54 +03:00
2025-08-19 21:47:51 +03:00
2025-08-19 21:47:51 +03:00
2025-06-09 21:54:48 +03:00
2025-08-09 05:06:53 -03:00
2025-07-04 12:36:57 +08:00
2025-06-09 21:54:48 +03:00
2025-06-09 21:54:48 +03:00
2025-07-31 15:07:35 -04:00
2025-06-09 21:54:48 +03:00
2025-05-25 10:55:36 -07:00