File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -346,14 +346,8 @@ class SmallPtrSetImpl : public SmallPtrSetImplBase {
346346 using ConstPtrTraits = PointerLikeTypeTraits<ConstPtrType>;
347347
348348protected:
349- // Constructors that forward to the base.
350- SmallPtrSetImpl (const void **SmallStorage, const SmallPtrSetImpl &that)
351- : SmallPtrSetImplBase(SmallStorage, that) {}
352- SmallPtrSetImpl (const void **SmallStorage, unsigned SmallSize,
353- SmallPtrSetImpl &&that)
354- : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {}
355- explicit SmallPtrSetImpl (const void **SmallStorage, unsigned SmallSize)
356- : SmallPtrSetImplBase(SmallStorage, SmallSize) {}
349+ // Forward constructors to the base.
350+ using SmallPtrSetImplBase::SmallPtrSetImplBase;
357351
358352public:
359353 using iterator = SmallPtrSetIterator<PtrType>;
You can’t perform that action at this time.
0 commit comments