1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50: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

@@ -91,7 +91,7 @@ Standard_EXPORT Standard_Boolean FUN_HDS_FACESINTERFER
TopOpeBRepDS_ListIteratorOfListOfInterference itL1(L1);
for (;itL1.More(); itL1.Next()) {
const Handle(TopOpeBRepDS_Interference)& I = itL1.Value();
TopOpeBRepDS_Kind GT,ST;Standard_Integer G,S;
TopOpeBRepDS_Kind GT = TopOpeBRepDS_UNKNOWN, ST = TopOpeBRepDS_UNKNOWN; Standard_Integer G,S = 0;
FUN_HDS_data(I,GT,G,ST,S);
// interference face1/edge/face2
Standard_Boolean fef = Standard_True;