Skip to content
Snippets Groups Projects
Commit 97332af0 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

WRG: use itkNotUsed method for unused parameter argv

parent 1e2e93d1
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@
#include "otbImage.h"
#include "otbCLHistogramEqualizationFilter.h"
int otbCLHistogramEqualizationFilter(int itkNotUsed(argc), char * argv [])
int otbCLHistogramEqualizationFilter(int itkNotUsed(argc), char * itkNotUsed(argv) [])
{
typedef int InputPixelType;
const unsigned int Dimension = 2;
......@@ -52,4 +52,4 @@ int otbCLHistogramEqualizationFilter(int itkNotUsed(argc), char * argv [])
writer->SetInput(histoEqualize->GetOutput());
writer->Update();
return EXIT_SUCCESS;
}
\ No newline at end of file
}
......@@ -25,7 +25,7 @@
#include "itkImageRegionIterator.h"
#include "otbCLHistogramEqualizationFilter.h"
int otbHelperCLAHE(int itkNotUsed(argc), char * argv [])
int otbHelperCLAHE(int itkNotUsed(argc), char * itkNotUsed(argv) [])
{
typedef int InputPixelType;
const unsigned int Dimension = 2;
......@@ -90,4 +90,4 @@ int otbHelperCLAHE(int itkNotUsed(argc), char * argv [])
writer->Update();
return EXIT_SUCCESS;
}
\ No newline at end of file
}
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