From 9a3ffc3bc9ba29bcb86f8f4d63776f32c003b53b Mon Sep 17 00:00:00 2001
From: Manuel Grizonnet <manuel.grizonnet@cnes.fr>
Date: Fri, 22 Dec 2017 16:23:22 +0100
Subject: [PATCH] COVERITY: non-static class member m_StartTime is not
 initialized in this constructor

---
 Modules/Core/Common/src/otbStopwatch.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Modules/Core/Common/src/otbStopwatch.cxx b/Modules/Core/Common/src/otbStopwatch.cxx
index ba3a8174af..5c45c48335 100644
--- a/Modules/Core/Common/src/otbStopwatch.cxx
+++ b/Modules/Core/Common/src/otbStopwatch.cxx
@@ -27,7 +27,7 @@ namespace otb
 
 Stopwatch
 ::Stopwatch()
-    : m_ElapsedMilliseconds(), m_IsRunning()
+  : m_StartTime(), m_ElapsedMilliseconds(), m_IsRunning()
 {
 }
 
-- 
GitLab