summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/MT_Cubit/cubit_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Cubit/TAO/MT_Cubit/cubit_i.cpp')
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/cubit_i.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/cubit_i.cpp b/TAO/performance-tests/Cubit/TAO/MT_Cubit/cubit_i.cpp
index f27c6c029f9..818fba8d284 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/cubit_i.cpp
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/cubit_i.cpp
@@ -20,7 +20,6 @@ Cubit_i::~Cubit_i (void)
CORBA::Octet
Cubit_i::cube_octet (CORBA::Octet o,
CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return (CORBA::Octet) (o * o * o);
}
@@ -28,7 +27,6 @@ Cubit_i::cube_octet (CORBA::Octet o,
CORBA::Short
Cubit_i::cube_short (CORBA::Short s,
CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return (CORBA::Short) (s * s * s);
}
@@ -36,7 +34,6 @@ Cubit_i::cube_short (CORBA::Short s,
CORBA::Long
Cubit_i::cube_long (CORBA::Long l,
CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return (CORBA::Long) (l * l * l);
}
@@ -44,7 +41,6 @@ Cubit_i::cube_long (CORBA::Long l,
Cubit::Many
Cubit_i::cube_struct (const Cubit::Many &values,
CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
Cubit::Many out_values;
@@ -57,13 +53,11 @@ Cubit_i::cube_struct (const Cubit::Many &values,
void
Cubit_i::noop (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
// does nothing.
}
void Cubit_i::shutdown (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"(%t) Calling orb ()->shutdown ()\n"));