From 50e433aaf287ce6b53536f3bfe0a7e69a483aad1 Mon Sep 17 00:00:00 2001 From: Pawel Date: Tue, 17 Jul 2012 15:07:03 +0200 Subject: [PATCH] 0023304: Copying constructor fails to copy both 'myIndx' variables. Copy constructor corrected. --- src/BRepMesh/BRepMesh_PairOfIndex.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BRepMesh/BRepMesh_PairOfIndex.hxx b/src/BRepMesh/BRepMesh_PairOfIndex.hxx index 362f0358ce..df269e1240 100755 --- a/src/BRepMesh/BRepMesh_PairOfIndex.hxx +++ b/src/BRepMesh/BRepMesh_PairOfIndex.hxx @@ -38,7 +38,7 @@ public: BRepMesh_PairOfIndex(const BRepMesh_PairOfIndex& theOther) { myIndx1 = theOther.myIndx1; - myIndx1 = theOther.myIndx2; + myIndx2 = theOther.myIndx2; } //! Clear indices