diff options
Diffstat (limited to 'cpp/test/Freeze/evictor/TestI.cpp')
-rw-r--r-- | cpp/test/Freeze/evictor/TestI.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cpp/test/Freeze/evictor/TestI.cpp b/cpp/test/Freeze/evictor/TestI.cpp index 2aaf91e6ddd..74e64967290 100644 --- a/cpp/test/Freeze/evictor/TestI.cpp +++ b/cpp/test/Freeze/evictor/TestI.cpp @@ -313,9 +313,6 @@ 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&) @@ -329,9 +326,6 @@ 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&) @@ -562,9 +556,6 @@ 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&) |