From: Pawel Date: Tue, 17 Jul 2012 14:08:11 +0000 (+0200) Subject: 0023308: A typo in if-clause, in TopOpeBRepDS_EXPORT.cxx X-Git-Tag: V6_5_4_beta1~124 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=431258f7471c054b4cd2ebaf9a7cfcc475dba742;p=occt-copy.git 0023308: A typo in if-clause, in TopOpeBRepDS_EXPORT.cxx Corrected typo in the if-clause. --- diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx b/src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx index 8e277d3b0c..2365ce3bdc 100755 --- a/src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx +++ b/src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx @@ -1820,7 +1820,7 @@ Standard_EXPORT void FUN_ds_completeforE7(const Handle(TopOpeBRepDS_HDataStructu FUN_selectSKinterference(loicopy,TopOpeBRepDS_FACE,l1); TopOpeBRepDS_ListOfInterference lFOR; Standard_Integer nFOR = FUN_selectTRAORIinterference(l1,TopAbs_FORWARD,lFOR); 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_ListIteratorOfListOfInterference it(lFOR);