[Path] Area.cpp: remove redundant nullptr check
This commit is contained in:
@@ -3041,7 +3041,7 @@ std::list<TopoDS_Shape> Area::sortWires(const std::list<TopoDS_Shape>& shapes,
|
||||
gp_Pnt pstart, pend;
|
||||
if (_pstart)
|
||||
pstart = *_pstart;
|
||||
bool use_bound = !has_start || _pstart == nullptr;
|
||||
bool use_bound = !has_start || !_pstart;
|
||||
|
||||
//Second stage, group shape by its plane, and find overall boundary
|
||||
|
||||
|
||||
Reference in New Issue
Block a user