diff options
author | gokhale <asgokhale@users.noreply.github.com> | 1999-06-10 12:17:41 +0000 |
---|---|---|
committer | gokhale <asgokhale@users.noreply.github.com> | 1999-06-10 12:17:41 +0000 |
commit | 96a521e4eaa5c62ac5cf0cccfd88af87fc7d3866 (patch) | |
tree | 3a5f8685389d8eac59c83662ec49eb672ceb3151 /TAO/tao/Pluggable.cpp | |
parent | 201e827e73e08ea32846d78a31b396801af5f1e2 (diff) | |
download | ATCD-96a521e4eaa5c62ac5cf0cccfd88af87fc7d3866.tar.gz |
fixed ACE_THROW_SPEC
Diffstat (limited to 'TAO/tao/Pluggable.cpp')
-rw-r--r-- | TAO/tao/Pluggable.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Pluggable.cpp b/TAO/tao/Pluggable.cpp index 053485bb736..3c0cf9a8f8a 100644 --- a/TAO/tao/Pluggable.cpp +++ b/TAO/tao/Pluggable.cpp @@ -245,9 +245,9 @@ TAO_Transport::start_request (TAO_ORB_Core *, CORBA::Boolean, TAO_OutputCDR &, CORBA::Environment &ACE_TRY_ENV) - TAO_THROW_SPEC ((CORBA::SystemException)) + ACE_THROW_SPEC ((CORBA::SystemException)) { - TAO_THROW (CORBA::INTERNAL ()); + ACE_THROW (CORBA::INTERNAL ()); } void @@ -256,9 +256,9 @@ TAO_Transport::start_locate (TAO_ORB_Core *, CORBA::ULong, TAO_OutputCDR &, CORBA::Environment &ACE_TRY_ENV) - TAO_THROW_SPEC ((CORBA::SystemException)) + ACE_THROW_SPEC ((CORBA::SystemException)) { - TAO_THROW (CORBA::INTERNAL ()); + ACE_THROW (CORBA::INTERNAL ()); } // ********************************************************************* |