Part: modernize C++: use equals default
This commit is contained in:
@@ -47,18 +47,14 @@
|
||||
|
||||
using namespace Part;
|
||||
|
||||
BRepOffsetAPI_MakeOffsetFix::BRepOffsetAPI_MakeOffsetFix()
|
||||
{
|
||||
}
|
||||
BRepOffsetAPI_MakeOffsetFix::BRepOffsetAPI_MakeOffsetFix() = default;
|
||||
|
||||
BRepOffsetAPI_MakeOffsetFix::BRepOffsetAPI_MakeOffsetFix(const GeomAbs_JoinType Join, const Standard_Boolean IsOpenResult)
|
||||
{
|
||||
mkOffset.Init(Join, IsOpenResult);
|
||||
}
|
||||
|
||||
BRepOffsetAPI_MakeOffsetFix::~BRepOffsetAPI_MakeOffsetFix()
|
||||
{
|
||||
}
|
||||
BRepOffsetAPI_MakeOffsetFix::~BRepOffsetAPI_MakeOffsetFix() = default;
|
||||
|
||||
void BRepOffsetAPI_MakeOffsetFix::AddWire(const TopoDS_Wire& Spine)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user