DiscussionsIssue archiveOCCT:Modeling Algorithms

Archived issue #0023294

Identical sub-expression in 'if-clause'

CommunityOCCT:Modeling Algorithmsclosed3 public notes

Search issues

Description

BOP_ArgumentAnalyzer.cxx, line 930

if((aT1==TopAbs_WIRE && aT2==TopAbs_SHELL) ||
       (aT1==TopAbs_WIRE && aT2==TopAbs_SHELL)) {

should probably read

if((aT1==TopAbs_WIRE && aT2==TopAbs_SHELL) ||
       (aT2==TopAbs_WIRE && aT1==TopAbs_SHELL)) {

Public activity

3 archived notes

Participants are labeled by their role within this record.

01Author
Corresponding git branch pushed. Please review.
02Commenter 2
Reviewed. Please test.
03Commenter 1
Dear Commenter 2,
Branch CR23294 (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