From 08f17483818a7844de5cd5f0add5ab8679594b87 Mon Sep 17 00:00:00 2001 From: Guillaume Pasero <guillaume.pasero@c-s.fr> Date: Wed, 18 Dec 2019 15:39:00 +0100 Subject: [PATCH] WRG: more missing override --- Modules/Applications/AppImageUtils/app/otbMosaic.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/Applications/AppImageUtils/app/otbMosaic.cxx b/Modules/Applications/AppImageUtils/app/otbMosaic.cxx index ba3e400800..370ba416d8 100644 --- a/Modules/Applications/AppImageUtils/app/otbMosaic.cxx +++ b/Modules/Applications/AppImageUtils/app/otbMosaic.cxx @@ -206,7 +206,7 @@ private: return outputFile; } - void DoInit() + void DoInit() override { SetName("Mosaic"); SetDescription("Perform a mosaic of input images"); @@ -382,7 +382,7 @@ private: SetDocExampleParameterValue("out", "mosaicImage.tif"); } - void DoUpdateParameters() + void DoUpdateParameters() override { // TODO: update parameters } @@ -1028,7 +1028,7 @@ private: } } - void DoExecute() + void DoExecute() override { GDALAllRegister(); m_TemporaryFiles.clear(); @@ -1055,7 +1055,7 @@ private: } // DoExecute() - void AfterExecuteAndWriteOutputs() + void AfterExecuteAndWriteOutputs() override { if (m_TemporaryFiles.size() > 0) { -- GitLab