From: abv Date: Fri, 18 Jan 2013 08:16:43 +0000 (+0400) Subject: 0023678: Compiler warning in BRepFill_Pipe::ShareFaces() X-Git-Tag: V6_6_0_beta~131 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=7566ccf330535dc6ef56894676e7900de3f14c5d;p=occt-copy.git 0023678: Compiler warning in BRepFill_Pipe::ShareFaces() --- diff --git a/src/BRepFill/BRepFill_Pipe.cxx b/src/BRepFill/BRepFill_Pipe.cxx index 0016db44a5..2b4d5b990d 100755 --- a/src/BRepFill/BRepFill_Pipe.cxx +++ b/src/BRepFill/BRepFill_Pipe.cxx @@ -805,7 +805,7 @@ TopoDS_Shape BRepFill_Pipe::ShareFaces if (i == 1) { jj = 1; } else { - jj == myFaces->RowLength(); + jj = myFaces->RowLength(); if (jj == 1) { break; @@ -842,19 +842,11 @@ TopoDS_Shape BRepFill_Pipe::ShareFaces TopoDS_Vertex aV[2]; TopExp::Vertices(TopoDS::Edge(anExp.Current()), aV[0], aV[1]); Standard_Integer ie; - Standard_Integer je; - Standard_Integer indV; // Compute jj index of edges. - if (i == 1) { - je = 1; - } else { - je == myEdges->RowLength(); - } - - Standard_Integer j; + Standard_Integer je = (i == 1 ? 1 : myEdges->RowLength()); - for (j = 0; j < 2; j++) { + for (Standard_Integer j = 0; j < 2; j++) { if (aMapUsedVtx.Contains(aV[j])) { // This vertex is treated. continue;