]> OCCT Git - occt-copy.git/commitdiff
0028796: Coding Rules - fix declaration of Move constructor in NCollection_Array1
authorkgv <kgv@opencascade.com>
Mon, 29 May 2017 09:46:59 +0000 (12:46 +0300)
committerkgv <kgv@opencascade.com>
Sat, 17 Mar 2018 12:30:11 +0000 (15:30 +0300)
src/NCollection/NCollection_Array1.hxx

index c476322fe06fd884c2a97e737cf3d3b4a642dcf8..ec012f7052057768adf28d1156ed56933b1b6e48 100644 (file)
@@ -192,7 +192,7 @@ public:
   }
 
   //! Move constructor
-  NCollection_Array1 (const NCollection_Array1&& theOther)
+  NCollection_Array1 (NCollection_Array1&& theOther)
   : myLowerBound (theOther.myLowerBound),
     myUpperBound (theOther.myUpperBound),
     myDeletable  (theOther.myDeletable),