diff options
Diffstat (limited to 'cpp/test/Ice/operations/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/operations/TestI.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/TestI.cpp b/cpp/test/Ice/operations/TestI.cpp index 1d2de97466b..4d0f3c0584a 100644 --- a/cpp/test/Ice/operations/TestI.cpp +++ b/cpp/test/Ice/operations/TestI.cpp @@ -64,6 +64,16 @@ MyDerivedClassI::shutdown(const Ice::Current& current) current.adapter->getCommunicator()->shutdown(); } +bool +MyDerivedClassI::supportsCompress(const Ice::Current& current) +{ +#if defined(ICE_OS_UWP) + return false; +#else + return true; +#endif +} + void MyDerivedClassI::opVoid(const Ice::Current& current) { |