diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-18 08:47:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-18 08:47:07 +0100 |
commit | 9c2b336b0e3bbbc4b73a81c0529cd45e273a0f38 (patch) | |
tree | 24f36a9e9f048a98dffde8031ea8f305f9474d5c /sal | |
parent | 80d9fbdde2a921958ec6725a1d80ba17fc5165c9 (diff) |
C++03 fixup
Change-Id: I2a8b33adbc3844347e78738fbbf5a336af543e8a
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/osl/process/osl_Thread.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sal/qa/osl/process/osl_Thread.cxx b/sal/qa/osl/process/osl_Thread.cxx index f895a28c54b6..756df0bf2adb 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() |