1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +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
parent db3bc35477
commit f99bcab4c9

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