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

0027362: Meshing performance

Remove warning on VS2015
This commit is contained in:
msv 2016-07-09 12:18:34 +03:00 committed by bugmaster
parent fd59283a7b
commit 6482df8152

View File

@ -134,7 +134,7 @@ BRepMesh_EdgeTessellator::BRepMesh_EdgeTessellator(
continue;
Standard_Real aF, aL;
Handle(Geom2d_Curve) aCurve2d = BRep_Tool::CurveOnSurface(theEdge, aFace, aF, aL);
aCurve2d = BRep_Tool::CurveOnSurface(theEdge, aFace, aF, aL);
if ( Abs(aF - aFirstParam) > Precision::PConfusion() ||
Abs(aL - aLastParam ) > Precision::PConfusion() )
{