Skip to content

Commit 1cd74ae

Browse files
committed
BUG: Fixing typename declaration in function definition
1 parent 1d82c73 commit 1cd74ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/itkArrivalFunctionToPathFilter.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ArrivalFunctionToPathFilter<TInputImage,TOutputPath>
4242
template <class TInputImage, class TOutputPath>
4343
void
4444
ArrivalFunctionToPathFilter<TInputImage,TOutputPath>
45-
::SetPathEndPoint(const ArrivalFunctionToPathFilter::PointType &point)
45+
::SetPathEndPoint(const PointType &point)
4646
{
4747
this->ClearPathEndPoints();
4848
this->AddPathEndPoint( point );
@@ -51,7 +51,7 @@ ArrivalFunctionToPathFilter<TInputImage,TOutputPath>
5151
template <class TInputImage, class TOutputPath>
5252
void
5353
ArrivalFunctionToPathFilter<TInputImage,TOutputPath>
54-
::AddPathEndPoint(const ArrivalFunctionToPathFilter::PointType &point)
54+
::AddPathEndPoint(const PointType &point)
5555
{
5656
m_PointList.push_back( point );
5757
this->Modified();

0 commit comments

Comments
 (0)