From 01aeef893c784c67480b41a1069a7a8498a64abb Mon Sep 17 00:00:00 2001 From: Antoine Regimbeau <antoine.regimbeau@c-s.fr> Date: Fri, 25 Aug 2017 16:58:35 +0200 Subject: [PATCH] COMP : correct list's initialization --- Modules/Applications/AppImageUtils/app/otbPixelValue.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx b/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx index 3e723e9152..857b20dc6d 100644 --- a/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx +++ b/Modules/Applications/AppImageUtils/app/otbPixelValue.cxx @@ -146,7 +146,7 @@ private: min.Fill(0); max[0] = inImage->GetLargestPossibleRegion().GetSize()[0] - 1; max[1] = inImage->GetLargestPossibleRegion().GetSize()[1] - 1; - std::string boundaries[4](""); + std::string boundaries[4]; if (mode == "index") { boundaries[0] = std::to_string(max[0]); -- GitLab