1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-07 18:30:55 +03:00

0023304: Copying constructor fails to copy both 'myIndx' variables.

Copy constructor corrected.
This commit is contained in:
Pawel 2012-07-17 15:07:03 +02:00 committed by Pawel Kowalski
parent 606a112a12
commit 50e433aaf2

View File

@ -38,7 +38,7 @@ public:
BRepMesh_PairOfIndex(const BRepMesh_PairOfIndex& theOther) BRepMesh_PairOfIndex(const BRepMesh_PairOfIndex& theOther)
{ {
myIndx1 = theOther.myIndx1; myIndx1 = theOther.myIndx1;
myIndx1 = theOther.myIndx2; myIndx2 = theOther.myIndx2;
} }
//! Clear indices //! Clear indices