forked from OSchip/llvm-project
[Polly] Fix stage 2 clang -Wdeprecated-copy after D79714
This commit is contained in:
parent
f22d381385
commit
a7b7e7b187
|
@ -35,7 +35,6 @@ struct isl_iterator
|
|||
: List(&List), Position(std::max(List.size(), 0)) {}
|
||||
isl_iterator(const ListT &List, int Position)
|
||||
: List(&List), Position(Position) {}
|
||||
isl_iterator &operator=(const isl_iterator &R) = default;
|
||||
|
||||
bool operator==(const isl_iterator &O) const {
|
||||
return List == O.List && Position == O.Position;
|
||||
|
|
Loading…
Reference in New Issue