aboutsummaryrefslogtreecommitdiff
path: root/polly
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2021-04-24 00:56:22 -0700
committerFangrui Song <i@maskray.me>2021-04-24 00:56:23 -0700
commita7b7e7b1877d7968414396719ce78473e8fd9755 (patch)
tree2915018e37b5b5a077292009cfcc0160c44e1532 /polly
parentf22d3813850f9e87c5204df6844a93b8c5db7730 (diff)
downloadllvm-a7b7e7b1877d7968414396719ce78473e8fd9755.zip
llvm-a7b7e7b1877d7968414396719ce78473e8fd9755.tar.gz
llvm-a7b7e7b1877d7968414396719ce78473e8fd9755.tar.bz2
[Polly] Fix stage 2 clang -Wdeprecated-copy after D79714
Diffstat (limited to 'polly')
-rw-r--r--polly/include/polly/Support/ISLTools.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/polly/include/polly/Support/ISLTools.h b/polly/include/polly/Support/ISLTools.h
index cf631f8..99a0302 100644
--- a/polly/include/polly/Support/ISLTools.h
+++ b/polly/include/polly/Support/ISLTools.h
@@ -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;