Skip to content
Snippets Groups Projects
Commit 28066062 authored by Julien Michel's avatar Julien Michel
Browse files

COMP: Fixing warning on reference to local

parent 6f6deb50
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#ifndef __otbWatershedSegmentationFilter_h #ifndef __otbWatershedSegmentationFilter_h
#define __otbWatershedSegmentationFilter_h #define __otbWatershedSegmentationFilter_h
#include "itkMacro.h" #include "otbMacro.h"
#include "itkCastImageFilter.h" #include "itkCastImageFilter.h"
#include "itkWatershedImageFilter.h" #include "itkWatershedImageFilter.h"
...@@ -69,10 +69,10 @@ public: ...@@ -69,10 +69,10 @@ public:
itkStaticConstMacro(ImageDimension, unsigned int, TInputImage::ImageDimension); itkStaticConstMacro(ImageDimension, unsigned int, TInputImage::ImageDimension);
otbSetObjectMemberMacro(WatershedFilter,Level,float); otbSetObjectMemberMacro(WatershedFilter,Level,float);
otbGetObjectMemberConstReferenceMacro(WatershedFilter,Level,float); otbGetObjectMemberMacro(WatershedFilter,Level,float);
otbSetObjectMemberMacro(WatershedFilter,Threshold,float); otbSetObjectMemberMacro(WatershedFilter,Threshold,float);
otbGetObjectMemberConstReferenceMacro(WatershedFilter,Threshold,float); otbGetObjectMemberMacro(WatershedFilter,Threshold,float);
protected: protected:
......
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