Archived issue #0023685
Comparision operator (==) instead of assignment (=) used
Description
In BRepFill_Pipe.cxx in lines
808: jj == myFaces->RowLength();
852: je == myEdges->RowLength();
assignment (=) should be used instead of comparison.
808: jj == myFaces->RowLength();
852: je == myEdges->RowLength();
assignment (=) should be used instead of comparison.
Public activity
3 archived notes
Participants are labeled by their role within this record.
Branch CR23685 pushed. Please review.
Dear skv, please review the patch.
Although it is trivial the function BRepFill_Pipe::ShareFaces() initially breaks on second iteration (due to bug) and it will be better that author will check that algorithm will work as originally intended.
Although it is trivial the function BRepFill_Pipe::ShareFaces() initially breaks on second iteration (due to bug) and it will be better that author will check that algorithm will work as originally intended.
Related records