1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0023678: Compiler warning in BRepFill_Pipe::ShareFaces()

This commit is contained in:
abv
2013-01-18 12:16:43 +04:00
parent a940de4195
commit 7566ccf330

View File

@@ -805,7 +805,7 @@ TopoDS_Shape BRepFill_Pipe::ShareFaces
if (i == 1) { if (i == 1) {
jj = 1; jj = 1;
} else { } else {
jj == myFaces->RowLength(); jj = myFaces->RowLength();
if (jj == 1) { if (jj == 1) {
break; break;
@@ -842,19 +842,11 @@ TopoDS_Shape BRepFill_Pipe::ShareFaces
TopoDS_Vertex aV[2]; TopoDS_Vertex aV[2];
TopExp::Vertices(TopoDS::Edge(anExp.Current()), aV[0], aV[1]); TopExp::Vertices(TopoDS::Edge(anExp.Current()), aV[0], aV[1]);
Standard_Integer ie; Standard_Integer ie;
Standard_Integer je;
Standard_Integer indV;
// Compute jj index of edges. // Compute jj index of edges.
if (i == 1) { Standard_Integer je = (i == 1 ? 1 : myEdges->RowLength());
je = 1;
} else {
je == myEdges->RowLength();
}
Standard_Integer j; for (Standard_Integer j = 0; j < 2; j++) {
for (j = 0; j < 2; j++) {
if (aMapUsedVtx.Contains(aV[j])) { if (aMapUsedVtx.Contains(aV[j])) {
// This vertex is treated. // This vertex is treated.
continue; continue;