From: bugmaster Date: Fri, 29 Jul 2016 08:39:08 +0000 (+0300) Subject: Elimination of compiler warning on VC++ 2015 after integration 27448 X-Git-Tag: V7_1_0_beta~233 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=79cbd2cf60544035c9a662ae6da094d69d87c302;p=occt-copy.git Elimination of compiler warning on VC++ 2015 after integration 27448 --- 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);