diff options
-rw-r--r-- | include/llvm/Support/IntegersSubset.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Support/IntegersSubset.h b/include/llvm/Support/IntegersSubset.h index ea3a8aee4f..b6ffe1b501 100644 --- a/include/llvm/Support/IntegersSubset.h +++ b/include/llvm/Support/IntegersSubset.h @@ -432,9 +432,7 @@ public: // implicit template<class RangesCollectionTy> - IntegersSubset(const RangesCollectionTy& Src) : - IntegersSubsetGeneric(Src) { - + IntegersSubset(const RangesCollectionTy& Src) : ParentTy(Src) { std::vector<Constant*> Elts; Elts.reserve(Src.size()); for (typename RangesCollectionTy::const_iterator i = Src.begin(), |