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

WRG: more warnings filtered

parent bc4b41b9
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,7 @@ public: ...@@ -136,7 +136,7 @@ public:
itkNewMacro(Self); itkNewMacro(Self);
itkTypeMacro(ZonalStatistics, Application); itkTypeMacro(ZonalStatistics, Application);
void DoInit() void DoInit() override
{ {
SetName("ZonalStatistics"); SetName("ZonalStatistics");
...@@ -201,7 +201,7 @@ public: ...@@ -201,7 +201,7 @@ public:
SetOfficialDocLink(); SetOfficialDocLink();
} }
void DoUpdateParameters() void DoUpdateParameters() override
{ {
// Nothing to do here : all parameters are independent // Nothing to do here : all parameters are independent
} }
...@@ -431,7 +431,7 @@ public: ...@@ -431,7 +431,7 @@ public:
statWriter->Update(); statWriter->Update();
} }
void DoExecute() void DoExecute() override
{ {
// Get input image // Get input image
m_InputImage = GetParameterImage("in"); m_InputImage = GetParameterImage("in");
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#ifndef otbKNearestNeighborsMachineLearningModel_hxx #ifndef otbKNearestNeighborsMachineLearningModel_hxx
#define otbKNearestNeighborsMachineLearningModel_hxx #define otbKNearestNeighborsMachineLearningModel_hxx
#include <boost/lexical_cast.hpp> #include "otb_boost_lexicalcast_header.h"
#include "otbKNearestNeighborsMachineLearningModel.h" #include "otbKNearestNeighborsMachineLearningModel.h"
#include "otbOpenCVUtils.h" #include "otbOpenCVUtils.h"
......
...@@ -25,7 +25,7 @@ OpenCV and/or libSVM") ...@@ -25,7 +25,7 @@ OpenCV and/or libSVM")
otb_module(OTBSupervised otb_module(OTBSupervised
ENABLE_SHARED ENABLE_SHARED
DEPENDS DEPENDS
OTBBoost OTBBoostAdapters
OTBCommon OTBCommon
OTBITK OTBITK
OTBImageBase OTBImageBase
......
...@@ -127,7 +127,11 @@ ...@@ -127,7 +127,11 @@
#endif #endif
#ifndef LOG_QDEBUG #ifndef LOG_QDEBUG
#define LOG_QDEBUG ( !NO_QLOG && !NO_QDEBUG && defined( OTB_DEBUG ) && 0 ) #if !NO_QLOG && !NO_QDEBUG && defined( OTB_DEBUG )
#define LOG_QDEBUG 0
#else
#define LOG_QDEBUG 0
#endif
#endif #endif
#ifndef LOG_QWARNING #ifndef LOG_QWARNING
......
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