1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

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

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),