diff options
Diffstat (limited to 'cpp/test/Freeze/evictor/TestI.cpp')
-rw-r--r-- | cpp/test/Freeze/evictor/TestI.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/test/Freeze/evictor/TestI.cpp b/cpp/test/Freeze/evictor/TestI.cpp index 82ca1dad78c..70a84c2d5bb 100644 --- a/cpp/test/Freeze/evictor/TestI.cpp +++ b/cpp/test/Freeze/evictor/TestI.cpp @@ -313,6 +313,9 @@ Test::ServantI::addFacet(const string& name, const string& data, const Current& try { +#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) + IceUtil::DummyBCC dummy; +#endif _evictor->addFacet(facet, current.id, name); } catch(const Ice::AlreadyRegisteredException&) @@ -326,6 +329,9 @@ Test::ServantI::removeFacet(const string& name, const Current& current) const { try { +#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) + IceUtil::DummyBCC dummy; +#endif _evictor->removeFacet(current.id, name); } catch(const Ice::NotRegisteredException&) @@ -558,6 +564,9 @@ Test::RemoteEvictorI::createServant(const string& id, Int value, const Current&) ServantPtr servant = new ServantI(this, _evictor, value); try { +#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) + IceUtil::DummyBCC dummy; +#endif return ServantPrx::uncheckedCast(_evictor->add(servant, ident)); } catch(const Ice::AlreadyRegisteredException&) |