[polly] a7b7e7b - [Polly] Fix stage 2 clang -Wdeprecated-copy after D79714
    Fangrui Song via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Sat Apr 24 00:56:29 PDT 2021
    
    
  
Author: Fangrui Song
Date: 2021-04-24T00:56:23-07:00
New Revision: a7b7e7b1877d7968414396719ce78473e8fd9755
URL: https://github.com/llvm/llvm-project/commit/a7b7e7b1877d7968414396719ce78473e8fd9755
DIFF: https://github.com/llvm/llvm-project/commit/a7b7e7b1877d7968414396719ce78473e8fd9755.diff
LOG: [Polly] Fix stage 2 clang -Wdeprecated-copy after D79714
Added: 
    
Modified: 
    polly/include/polly/Support/ISLTools.h
Removed: 
    
################################################################################
diff  --git a/polly/include/polly/Support/ISLTools.h b/polly/include/polly/Support/ISLTools.h
index cf631f82b33f..99a0302f0c1b 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;
        
    
    
More information about the llvm-commits
mailing list