From 79cbd2cf60544035c9a662ae6da094d69d87c302 Mon Sep 17 00:00:00 2001 From: bugmaster Date: Fri, 29 Jul 2016 11:39:08 +0300 Subject: [PATCH] Elimination of compiler warning on VC++ 2015 after integration 27448 --- src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx | 1 - src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx index cd3566e94b..6867922ffc 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx @@ -272,7 +272,6 @@ void BOPAlgo_PaveFiller::PerformEF() aPB->Indices(nV[0], nV[1]); bIsPBSplittable = aPB->IsSplittable(); // - Standard_Real aTS1, aTS2; anewSR.Range(aTS1, aTS2); // // extend vertices ranges using Edge/Edge intersections diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx index cf3ce4888d..c3b5b1a201 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx @@ -729,10 +729,10 @@ Standard_Integer BOPAlgo_PaveFiller::PostTreatFF // BRep_Builder aBB; for (k = 1; k <= aNbME; ++k) { - const TopoDS_Edge& aE = TopoDS::Edge(theMicroEdges(k)); + const TopoDS_Edge& aEM = TopoDS::Edge(theMicroEdges(k)); // TopoDS_Vertex aV1, aV2; - TopExp::Vertices(aE, aV1, aV2); + TopExp::Vertices(aEM, aV1, aV2); // aLS.Append(aV1); aLS.Append(aV2);