Skip to content
Snippets Groups Projects
Commit b890f899 authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

WRG: Supress warning unused parameters.

parent 3ec4c575
Branches
Tags
No related merge requests found
......@@ -52,9 +52,9 @@ public:
itkGetMacro(ForwardEvents,bool);
/** Users actions */
virtual void RegionSelected(const RegionType & region) {};
virtual void RegionSelected(const RegionType & ) {};
virtual void ViewedRegionChanged() {};
virtual void PixelClicked(const IndexType& index) {};
virtual void PixelClicked(const IndexType& ) {};
protected:
/** Constructor */
......
......@@ -87,7 +87,7 @@ namespace otb
return outPixel;
}
virtual OutputPixelType operator()(ScalarType inPixel) const
virtual OutputPixelType operator()(ScalarType /*inPixel*/) const
{
//FIXME we don't handle the std::complex<> yet
itkExceptionMacro(<<"Can't compute amplitude from a scalar value");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment