1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00

0024236: Eliminate GCC compiler warning (uninitialized variables)

This commit is contained in:
ski
2013-10-10 14:47:21 +04:00
committed by bugmaster
parent 012d92b631
commit d20d815bbe
16 changed files with 18 additions and 17 deletions

View File

@@ -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;