0028796: Coding Rules - fix declaration of Move constructor in NCollection_Array1

This commit is contained in:
kgv
2017-05-29 12:46:59 +03:00
committed by bugmaster
parent 1603a49799
commit 3ae5dc8173
+1 -1
View 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),