From: kgv Date: Mon, 29 May 2017 09:46:59 +0000 (+0300) Subject: 0028796: Coding Rules - fix declaration of Move constructor in NCollection_Array1 X-Git-Tag: V7_2_0_beta~120 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=3ae5dc8173a2b180d95e0fc280707d0f3c0d112a;p=occt.git 0028796: Coding Rules - fix declaration of Move constructor in NCollection_Array1 --- diff --git a/src/NCollection/NCollection_Array1.hxx b/src/NCollection/NCollection_Array1.hxx index c476322fe0..ec012f7052 100644 --- a/src/NCollection/NCollection_Array1.hxx +++ b/src/NCollection/NCollection_Array1.hxx @@ -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),