We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe7fb3e commit 3ca1ca4Copy full SHA for 3ca1ca4
llvm/include/llvm/ADT/SmallSet.h
@@ -272,9 +272,9 @@ class SmallSet {
272
/// We use this middleman class DeprecatedSmallSet so that the deprecation
273
/// warning works. Placing LLVM_DEPRECATED just before SmallSet below won't
274
/// work.
275
-template <typename PointeeType, unsigned N>
+template <typename PointerType, unsigned N>
276
class LLVM_DEPRECATED("Use SmallPtrSet instead", "SmallPtrSet")
277
- DeprecatedSmallSet : public SmallPtrSet<PointeeType *, N> {};
+ DeprecatedSmallSet : public SmallPtrSet<PointerType, N> {};
278
279
template <typename PointeeType, unsigned N>
280
class SmallSet<PointeeType *, N> : public DeprecatedSmallSet<PointeeType *, N> {
0 commit comments