0024058: Eliminate compiler warning C4702 in MSVC++ with warning level 4
[occt.git] / src / TNaming / TNaming.cxx
index c252268..42b3ec0 100755 (executable)
@@ -990,7 +990,8 @@ static Standard_Boolean IsInternal(const TopoDS_Shape& aSx)
   TopoDS_Iterator aIt;
   bInternal = Standard_False;
   aIt.Initialize(aSx);
-  for (; aIt.More(); aIt.Next()) {
+  for (; aIt.More(); aIt.Next()) 
+  {
     const TopoDS_Shape& aSy=aIt.Value();
     aOr=aSy.Orientation();
     bInternal = (aOr == TopAbs_INTERNAL || aOr == TopAbs_EXTERNAL);