diff options
author | ZeroC Staff <git@zeroc.com> | 2003-05-27 14:13:08 +0000 |
---|---|---|
committer | ZeroC Staff <git@zeroc.com> | 2003-05-27 14:13:08 +0000 |
commit | 68d41eae65ab78d78508a02772f9a765ce84126b (patch) | |
tree | d5679de227f2f39639f58cac38dbc062ee32ea80 /cpp | |
parent | - Removed a number of typos in the documentation. (diff) | |
download | ice-68d41eae65ab78d78508a02772f9a765ce84126b.tar.bz2 ice-68d41eae65ab78d78508a02772f9a765ce84126b.tar.xz ice-68d41eae65ab78d78508a02772f9a765ce84126b.zip |
Added dummy data member for CC5.5 64bit.
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/test/Ice/adapterDeactivation/Client.cpp | 10 | ||||
-rw-r--r-- | cpp/test/Ice/adapterDeactivation/Collocated.cpp | 9 | ||||
-rw-r--r-- | cpp/test/Ice/adapterDeactivation/Server.cpp | 9 |
3 files changed, 28 insertions, 0 deletions
diff --git a/cpp/test/Ice/adapterDeactivation/Client.cpp b/cpp/test/Ice/adapterDeactivation/Client.cpp index 114fc7054e2..fbdc0f940c0 100644 --- a/cpp/test/Ice/adapterDeactivation/Client.cpp +++ b/cpp/test/Ice/adapterDeactivation/Client.cpp @@ -24,6 +24,16 @@ class TestClient : public Application public: virtual int run(int, char*[]); + +#if defined(__SUNPRO_CC) && (__SUNPRO_CC==0x550) +// +// Sun C++ 5.5 needs a dummy data member here. +// +private: + char _dummy; +#endif + + }; int diff --git a/cpp/test/Ice/adapterDeactivation/Collocated.cpp b/cpp/test/Ice/adapterDeactivation/Collocated.cpp index 0039bec0116..b18e1387736 100644 --- a/cpp/test/Ice/adapterDeactivation/Collocated.cpp +++ b/cpp/test/Ice/adapterDeactivation/Collocated.cpp @@ -25,6 +25,15 @@ class TestServer : public Application public: virtual int run(int, char*[]); + +#if defined(__SUNPRO_CC) && (__SUNPRO_CC==0x550) +// +// Sun C++ 5.5 needs a dummy data member here. +// +private: + char _dummy; +#endif + }; int diff --git a/cpp/test/Ice/adapterDeactivation/Server.cpp b/cpp/test/Ice/adapterDeactivation/Server.cpp index 37f0630bc22..acd20154df6 100644 --- a/cpp/test/Ice/adapterDeactivation/Server.cpp +++ b/cpp/test/Ice/adapterDeactivation/Server.cpp @@ -24,6 +24,15 @@ class TestServer : public Application public: virtual int run(int, char*[]); + +#if defined(__SUNPRO_CC) && (__SUNPRO_CC==0x550) +// +// Sun C++ 5.5 needs a dummy data member here. +// +private: + char _dummy; +#endif + }; int |