diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-11-24 20:44:34 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-11-24 20:44:34 +0000 |
commit | 2d3fc66ae3fa712ad3b9ff911752cf8f658e8948 (patch) | |
tree | e5d7dbdaf940a6165738f2c8ca43b4b0380cc324 /cpp/src/Ice/Instance.cpp | |
parent | Added better tracing to Java acm test (diff) | |
download | ice-2d3fc66ae3fa712ad3b9ff911752cf8f658e8948.tar.bz2 ice-2d3fc66ae3fa712ad3b9ff911752cf8f658e8948.tar.xz ice-2d3fc66ae3fa712ad3b9ff911752cf8f658e8948.zip |
Fixed unitialized IceInternal::Time::_hasObserver
Diffstat (limited to 'cpp/src/Ice/Instance.cpp')
-rw-r--r-- | cpp/src/Ice/Instance.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/Ice/Instance.cpp b/cpp/src/Ice/Instance.cpp index 66dc8abb135..6eacaa38416 100644 --- a/cpp/src/Ice/Instance.cpp +++ b/cpp/src/Ice/Instance.cpp @@ -195,11 +195,14 @@ class Timer : public IceUtil::Timer { public: - Timer(int priority) : IceUtil::Timer(priority) + Timer(int priority) : + IceUtil::Timer(priority), + _hasObserver(false) { } - Timer() + Timer() : + _hasObserver(false) { } |