]> OCCT Git - occt.git/commitdiff
0027362: Meshing performance
authormsv <msv@opencascade.com>
Sat, 9 Jul 2016 09:18:34 +0000 (12:18 +0300)
committerbugmaster <bugmaster@opencascade.com>
Mon, 11 Jul 2016 08:52:35 +0000 (11:52 +0300)
Remove warning on VS2015

src/BRepMesh/BRepMesh_EdgeTessellator.cxx

index b35b3bccd682845f9ba9e8da18509307f985279b..3ff00f8028149feddbe9e00570cf02a643785e87 100644 (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() )
       {