mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
0028796: Coding Rules - fix declaration of Move constructor in NCollection_Array1
This commit is contained in:
parent
1603a49799
commit
3ae5dc8173
@ -192,7 +192,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
//! Move constructor
|
//! Move constructor
|
||||||
NCollection_Array1 (const NCollection_Array1&& theOther)
|
NCollection_Array1 (NCollection_Array1&& theOther)
|
||||||
: myLowerBound (theOther.myLowerBound),
|
: myLowerBound (theOther.myLowerBound),
|
||||||
myUpperBound (theOther.myUpperBound),
|
myUpperBound (theOther.myUpperBound),
|
||||||
myDeletable (theOther.myDeletable),
|
myDeletable (theOther.myDeletable),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user