[Libreoffice-commits] core.git: sal/qa

Stephan Bergmann sbergman at redhat.com
Tue Feb 18 08:47:42 CET 2014


 sal/qa/osl/process/osl_Thread.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 9c2b336b0e3bbbc4b73a81c0529cd45e273a0f38
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Feb 18 08:47:07 2014 +0100

    C++03 fixup
    
    Change-Id: I2a8b33adbc3844347e78738fbbf5a336af543e8a

diff --git a/sal/qa/osl/process/osl_Thread.cxx b/sal/qa/osl/process/osl_Thread.cxx
index f895a28..756df0b 100644
--- a/sal/qa/osl/process/osl_Thread.cxx
+++ b/sal/qa/osl/process/osl_Thread.cxx
@@ -84,8 +84,10 @@ StopWatch::StopWatch()
     , m_bIsValid(false)
     , m_bIsRunning(false)
 {
-    t1 = {0, 0};
-    t2 = {0, 0};
+    t1.Seconds = 0;
+    t1.Nanosec = 0;
+    t2.Seconds = 0;
+    t2.Nanosec = 0;
 }
 
 void StopWatch::start()


More information about the Libreoffice-commits mailing list