0031671: Coding Rules - eliminate warnings issued by clang 11
[occt.git] / src / NCollection / NCollection_BaseSequence.hxx
index bbb0df3..99f99cf 100644 (file)
@@ -75,13 +75,6 @@ public:
       myPrevious = (isStart ? NULL : theSeq.myLastItem);
     }
 
-    //! Assignment
-    Iterator& operator = (const Iterator& theOther)
-    {
-      myCurrent = theOther.myCurrent;
-      myPrevious = theOther.myPrevious;
-      return *this;
-    }
     //! Switch to previous element; note that it will reset 
     void Previous()
     {