Skip to content
Snippets Groups Projects
Commit 270441f7 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

WRG: unsued param

parent b3479f43
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ template <class TInputImage, class TOutputImage>
void
DecimateImageFilter<TInputImage, TOutputImage>
::ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
itk::ThreadIdType threadId)
itk::ThreadIdType itkNotUsed(threadId))
{
InputImageRegionType inputRegionForThread;
this->CallCopyOutputRegionToInputRegion(inputRegionForThread, outputRegionForThread);
......
......@@ -43,7 +43,7 @@ public:
DotProductFunctor() {}
virtual ~DotProductFunctor() {}
bool operator !=(const DotProductFunctor& other) const
bool operator !=(const DotProductFunctor& itkNotUsed(other)) const
{
return false;
}
......
......@@ -45,7 +45,7 @@ WaveletGenerator<TMotherWaveletOperator>
template <Wavelet::Wavelet TMotherWaveletOperator>
void
WaveletGenerator<TMotherWaveletOperator>
::GetLowPassCoefficientVector(CoefficientVector& coeff) const
::GetLowPassCoefficientVector(CoefficientVector& itkNotUsed(coeff)) const
{
std::ostringstream msg;
msg << "The mother wavelet ID " << TMotherWaveletOperator;
......@@ -56,7 +56,7 @@ WaveletGenerator<TMotherWaveletOperator>
template <Wavelet::Wavelet TMotherWaveletOperator>
void
WaveletGenerator<TMotherWaveletOperator>
::GetHighPassCoefficientVector(CoefficientVector& coeff) const
::GetHighPassCoefficientVector(CoefficientVector& itkNotUsed(coeff)) const
{
std::ostringstream msg;
msg << "The mother wavelet ID " << TMotherWaveletOperator;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment