1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +03:00

0024077: Build errors on master branch on Mac OS X

small correction
Init() method is called with other parameter.
This commit is contained in:
nbv
2013-07-19 09:36:49 +04:00
parent 66deda1eea
commit 440906ef6a
2 changed files with 5 additions and 8 deletions

View File

@@ -788,12 +788,11 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferSurfaceOfRevolution
const Standard_Real UL = endAngle - startAngle;
// PTV 29.08.2002 end of OCC663
aMakeF = BRepBuilderAPI_MakeFace(aResultSurf, UF,
UL, VF, VL, Precision::Confusion());
aMakeF.Init(aResultSurf, UF, UL, VF, VL, Precision::Confusion());
}//if (!IsFullAngle)
else
{
aMakeF = BRepBuilderAPI_MakeFace(aResultSurf, Precision::Confusion());
aMakeF.Init(aResultSurf, Standard_True, Precision::Confusion());
}
if (aMakeF.IsDone())