diff options
| author | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-06-02 08:03:34 +0000 |
|---|---|---|
| committer | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-06-02 08:03:34 +0000 |
| commit | 4524dd7518288f3d49bcaf31cff27cb82462c79c (patch) | |
| tree | d82860337571ff7b4902413dae9ddb6832610614 | |
| parent | e2c53188ea8b01ca3d91b91c42faa5aa07ba4b70 (diff) | |
| download | external_llvm-4524dd7518288f3d49bcaf31cff27cb82462c79c.zip external_llvm-4524dd7518288f3d49bcaf31cff27cb82462c79c.tar.gz external_llvm-4524dd7518288f3d49bcaf31cff27cb82462c79c.tar.bz2 | |
Additional change for 157881. Forget to fix another IntegerSubset constructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157882 91177308-0d34-0410-b5e6-96231b3b80d8
| -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 ea3a8ae..b6ffe1b 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(), |
