Skip to content

Commit

Permalink
Merge branch 'release-5.4' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Dec 12, 2024
2 parents 5bf8d99 + ef7521d commit 26d9f48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
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

0 comments on commit 26d9f48

Please sign in to comment.