diff options
author | Jose <jose@zeroc.com> | 2016-01-12 16:40:02 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-01-12 16:40:02 +0100 |
commit | ee43ddf1d5c4c1196fa883e5b3b1ad4022842edb (patch) | |
tree | 8c2c14e56e1d3b20a6cde9989d0d0b0006aee55e /cpp/include/IceUtil/Thread.h | |
parent | C++11 minor improvements (diff) | |
download | ice-ee43ddf1d5c4c1196fa883e5b3b1ad4022842edb.tar.bz2 ice-ee43ddf1d5c4c1196fa883e5b3b1ad4022842edb.tar.xz ice-ee43ddf1d5c4c1196fa883e5b3b1ad4022842edb.zip |
C++ Consistent usage of public virtual
Diffstat (limited to 'cpp/include/IceUtil/Thread.h')
-rw-r--r-- | cpp/include/IceUtil/Thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/Thread.h b/cpp/include/IceUtil/Thread.h index 2c573e4615d..54203cf0ee0 100644 --- a/cpp/include/IceUtil/Thread.h +++ b/cpp/include/IceUtil/Thread.h @@ -112,7 +112,7 @@ private: #endif }; -class ICE_UTIL_API Thread : virtual public IceUtil::Shared +class ICE_UTIL_API Thread : public virtual IceUtil::Shared { public: |