[Polly] Fix stage 2 clang -Wdeprecated-copy after D79714

This commit is contained in:
Fangrui Song 2021-04-24 00:56:22 -07:00
parent f22d381385
commit a7b7e7b187
1 changed files with 0 additions and 1 deletions

View File

@ -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;