summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-20 15:06:35 +0000
committermk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-20 15:06:35 +0000
commit3bc3984117d4f9196604921a934e362574967e08 (patch)
tree32cf31486d1d9af5a7dc440121c1c6ebeea22daa
parentcfc490776d301a2b6fb8c8073da8b5d695c1b39a (diff)
downloadATCD-3bc3984117d4f9196604921a934e362574967e08.tar.gz
ChangeLogTag: Wed Oct 20 10:05:00 1999 Michael Kircher <Michael.Kircher@mchp.siemens.de>
-rw-r--r--TAO/ChangeLog-99c7
-rw-r--r--TAO/tests/AMI/client.cpp6
-rw-r--r--TAO/tests/AMI/simple_client.cpp4
3 files changed, 16 insertions, 1 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 0892dc99c4b..6a89ecffa06 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,10 @@
+Wed Oct 20 10:05:00 1999 Michael Kircher <Michael.Kircher@mchp.siemens.de>
+
+ * tests/AMI/simple_client.cpp,
+ tests/AMI/client.cpp:
+ Fixed missing ACE_THROW_SPEC declarations, thanks to
+ Thomas Groth <groth.th@stn-atlas.de> for reporting this.
+
Wed Oct 20 09:21:27 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* tao/corbafwd.h:
diff --git a/TAO/tests/AMI/client.cpp b/TAO/tests/AMI/client.cpp
index 22516f9a493..dce4ec273af 100644
--- a/TAO/tests/AMI/client.cpp
+++ b/TAO/tests/AMI/client.cpp
@@ -101,6 +101,7 @@ public:
void foo (CORBA::Long result,
CORBA::Long out_l,
CORBA::Environment&)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
if (debug)
{
@@ -115,6 +116,7 @@ public:
void foo_excep (A::AMI_AMI_TestExceptionHolder * excep_holder,
CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
@@ -145,6 +147,7 @@ public:
void get_yadda_excep (A::AMI_AMI_TestExceptionHolder * excep_holder,
CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_UNUSED_ARG (excep_holder);
ACE_UNUSED_ARG (ACE_TRY_ENV);
@@ -161,7 +164,8 @@ public:
};
void set_yadda_excep (A::AMI_AMI_TestExceptionHolder * excep_holder,
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_UNUSED_ARG (excep_holder);
ACE_UNUSED_ARG (ACE_TRY_ENV);
diff --git a/TAO/tests/AMI/simple_client.cpp b/TAO/tests/AMI/simple_client.cpp
index 2a58b38647a..eabf9024869 100644
--- a/TAO/tests/AMI/simple_client.cpp
+++ b/TAO/tests/AMI/simple_client.cpp
@@ -84,6 +84,7 @@ public:
void foo (CORBA::Long ami_return_val,
CORBA::Long out_l,
CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_UNUSED_ARG (ami_return_val);
ACE_UNUSED_ARG (out_l);
@@ -99,6 +100,7 @@ public:
void foo_excep (A::AMI_AMI_TestExceptionHolder * excep_holder,
CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
@@ -130,6 +132,7 @@ public:
void get_yadda_excep (A::AMI_AMI_TestExceptionHolder * excep_holder,
CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_UNUSED_ARG (excep_holder);
ACE_UNUSED_ARG (ACE_TRY_ENV);
@@ -148,6 +151,7 @@ public:
void set_yadda_excep (A::AMI_AMI_TestExceptionHolder * excep_holder,
CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_UNUSED_ARG (excep_holder);
ACE_UNUSED_ARG (ACE_TRY_ENV);