mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
0024236: Eliminate GCC compiler warning (uninitialized variables)
This commit is contained in:
@@ -1044,7 +1044,7 @@ void ChFi3d_Builder::PerformMoreThreeCorner(const Standard_Integer Jndex,
|
||||
TopoDS_Face face;
|
||||
Standard_Integer jfp = 0,ii;
|
||||
Standard_Integer ic,icplus,icmoins,icplus2,
|
||||
sense,index,indice,isurf1,isurf2;
|
||||
sense,index = 0,indice,isurf1,isurf2;
|
||||
Standard_Integer cbplus=0, n3d=0,IVtx = 0,nb;
|
||||
Standard_Boolean sameside,trouve,isfirst;
|
||||
Standard_Real pardeb ,parfin,xdir,ydir;
|
||||
|
@@ -1927,7 +1927,7 @@ void ChFi3d_ChBuilder::ExtentTwoCorner(const TopoDS_Vertex& V,
|
||||
|
||||
|
||||
Handle(ChFiDS_ChamfSpine) chsp[2];
|
||||
Standard_Real d[4], dis[2];
|
||||
Standard_Real d[4], dis[2] = { 0.0, 0.0 };
|
||||
Standard_Integer j;
|
||||
TopoDS_Face F[4];
|
||||
Standard_Real tmpang, tmd;
|
||||
|
Reference in New Issue
Block a user