diff options
author | Kazu Hirata <kazu@google.com> | 2025-08-21 15:03:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-21 15:03:16 -0700 |
commit | ec07d8e941b496b68cd7d2656293f202ff4b7f82 (patch) | |
tree | 08518086662e68ccb2a99dd9189beb760134b0fe /llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp | |
parent | f5f6613af66f678404034f50661ffa12a4f3b25c (diff) | |
download | llvm-ec07d8e941b496b68cd7d2656293f202ff4b7f82.zip llvm-ec07d8e941b496b68cd7d2656293f202ff4b7f82.tar.gz llvm-ec07d8e941b496b68cd7d2656293f202ff4b7f82.tar.bz2 |
[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.
Diffstat (limited to 'llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp')
0 files changed, 0 insertions, 0 deletions