1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-16 10:54:53 +03:00

0023308: A typo in if-clause, in TopOpeBRepDS_EXPORT.cxx

Corrected typo in the if-clause.
This commit is contained in:
Pawel 2012-07-17 16:08:11 +02:00 committed by Pawel Kowalski
parent 841d66724b
commit 431258f747

View File

@ -1820,7 +1820,7 @@ Standard_EXPORT void FUN_ds_completeforE7(const Handle(TopOpeBRepDS_HDataStructu
FUN_selectSKinterference(loicopy,TopOpeBRepDS_FACE,l1); FUN_selectSKinterference(loicopy,TopOpeBRepDS_FACE,l1);
TopOpeBRepDS_ListOfInterference lFOR; Standard_Integer nFOR = FUN_selectTRAORIinterference(l1,TopAbs_FORWARD,lFOR); TopOpeBRepDS_ListOfInterference lFOR; Standard_Integer nFOR = FUN_selectTRAORIinterference(l1,TopAbs_FORWARD,lFOR);
TopOpeBRepDS_ListOfInterference lREV; Standard_Integer nREV = FUN_selectTRAORIinterference(l1,TopAbs_REVERSED,lREV); TopOpeBRepDS_ListOfInterference lREV; Standard_Integer nREV = FUN_selectTRAORIinterference(l1,TopAbs_REVERSED,lREV);
if ((nFOR = 0) || (nREV == 0)) continue; if ((nFOR == 0) || (nREV == 0)) continue;
TopOpeBRepDS_ListOfInterference lnewI; Standard_Integer iFS=0; TopOpeBRepDS_ListOfInterference lnewI; Standard_Integer iFS=0;
TopOpeBRepDS_ListIteratorOfListOfInterference it(lFOR); TopOpeBRepDS_ListIteratorOfListOfInterference it(lFOR);