From 3ae5dc8173a2b180d95e0fc280707d0f3c0d112a Mon Sep 17 00:00:00 2001 From: kgv Date: Mon, 29 May 2017 12:46:59 +0300 Subject: [PATCH] 0028796: Coding Rules - fix declaration of Move constructor in NCollection_Array1 --- src/NCollection/NCollection_Array1.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),