Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/Core/QuadEdgeMesh/include/itkQuadEdgeMeshPoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ITK_TEMPLATE_EXPORT QuadEdgeMeshPoint : public Point<TCoordRep, VPointDime
#endif

public:
QuadEdgeMeshPoint();
QuadEdgeMeshPoint() = default;
QuadEdgeMeshPoint(const Self &) = default;
QuadEdgeMeshPoint(QuadEdgeMeshPoint &&) = default;
QuadEdgeMeshPoint &
Expand Down Expand Up @@ -118,7 +118,7 @@ class ITK_TEMPLATE_EXPORT QuadEdgeMeshPoint : public Point<TCoordRep, VPointDime
Initialize();

protected:
TQuadEdge * m_Edge; /**< Entry edge for this point into an Onext ring */
TQuadEdge * m_Edge{}; /**< Entry edge for this point into an Onext ring */
};
} // end namespace itk

Expand Down
6 changes: 0 additions & 6 deletions Modules/Core/QuadEdgeMesh/include/itkQuadEdgeMeshPoint.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ QuadEdgeMeshPoint<TCoordRep, VPointDimension, TQuadEdge>::Initialize()
m_Edge = static_cast<TQuadEdge *>(nullptr);
}

// ---------------------------------------------------------------------
template <typename TCoordRep, unsigned int VPointDimension, typename TQuadEdge>
QuadEdgeMeshPoint<TCoordRep, VPointDimension, TQuadEdge>::QuadEdgeMeshPoint()
{
this->Initialize();
}

// ---------------------------------------------------------------------
template <typename TCoordRep, unsigned int VPointDimension, typename TQuadEdge>
Expand Down