From 7566ccf330535dc6ef56894676e7900de3f14c5d Mon Sep 17 00:00:00 2001 From: abv Date: Fri, 18 Jan 2013 12:16:43 +0400 Subject: [PATCH] 0023678: Compiler warning in BRepFill_Pipe::ShareFaces() --- src/BRepFill/BRepFill_Pipe.cxx | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) 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; -- 2.39.5