1
0
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:
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

@@ -377,7 +377,7 @@ void Approx_SameParameter::Build(const Standard_Real Tolerance)
//Control tangents at the extremities to know if the
//reparametring is possible and calculate the tangents
//at the extremities of the function of change of variable.
Standard_Real tangent[2];
Standard_Real tangent[2] = { 0.0, 0.0 };
gp_Pnt Pcons,Pc3d;
gp_Vec Vcons,Vc3d;