Archived issue #0023295
A part of conditional expression is always true
Description
In BOPTools_PaveFiller_3, line 2045
if (!(aTypeC==GeomAbs_BezierCurve || GeomAbs_BSplineCurve)) {
should probably be
if (!(aTypeC==GeomAbs_BezierCurve || aTypeC==GeomAbs_BSplineCurve)) {
if (!(aTypeC==GeomAbs_BezierCurve || GeomAbs_BSplineCurve)) {
should probably be
if (!(aTypeC==GeomAbs_BezierCurve || aTypeC==GeomAbs_BSplineCurve)) {
Public activity
3 archived notes
Participants are labeled by their role within this record.
Corresponding git branch pushed. Please review.
Reviewed. Please test.
Dear Commenter 1,
Branch CR23295 (and products from GIT master) was compiled on Linux and Windows platforms and tested.
Regressions:
Not detected
Improvements:
Not detected
Testing case:
Not needed
Branch CR23295 (and products from GIT master) was compiled on Linux and Windows platforms and tested.
Regressions:
Not detected
Improvements:
Not detected
Testing case:
Not needed
Related records