Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llvm/include/llvm/ADT/SmallSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ class SmallSet {
/// We use this middleman class DeprecatedSmallSet so that the deprecation
/// warning works. Placing LLVM_DEPRECATED just before SmallSet below won't
/// work.
template <typename PointeeType, unsigned N>
template <typename PointerType, unsigned N>
class LLVM_DEPRECATED("Use SmallPtrSet instead", "SmallPtrSet")
DeprecatedSmallSet : public SmallPtrSet<PointeeType *, N> {};
DeprecatedSmallSet : public SmallPtrSet<PointerType, N> {};

template <typename PointeeType, unsigned N>
class SmallSet<PointeeType *, N> : public DeprecatedSmallSet<PointeeType *, N> {
Expand Down
Loading