]> OCCT Git - occt.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)
committerbugmaster <bugmaster@opencascade.com>
Thu, 1 Jun 2017 07:17:31 +0000 (10:17 +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),