Skip to content
Snippets Groups Projects
Commit c16d6e4a authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

COMP: fix compilation with clang

parent f74b2a8d
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ void ...@@ -69,7 +69,7 @@ void
StereoSensorModelToElevationFilter<TInputImage, TOutputHeight> StereoSensorModelToElevationFilter<TInputImage, TOutputHeight>
::SetMasterInput(const TInputImage * image) ::SetMasterInput(const TInputImage * image)
{ {
SetNthInput(0, const_cast<TInputImage *>( image )); this->SetNthInput(0, const_cast<TInputImage *>( image ));
} }
template <class TInputImage, class TOutputHeight> template <class TInputImage, class TOutputHeight>
...@@ -77,7 +77,7 @@ void ...@@ -77,7 +77,7 @@ void
StereoSensorModelToElevationFilter<TInputImage, TOutputHeight> StereoSensorModelToElevationFilter<TInputImage, TOutputHeight>
::SetSlaveInput(const TInputImage * image) ::SetSlaveInput(const TInputImage * image)
{ {
SetNthInput(1, const_cast<TInputImage *>( image )); this->SetNthInput(1, const_cast<TInputImage *>( image ));
} }
template <class TInputImage, class TOutputHeight> template <class TInputImage, class TOutputHeight>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment