summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-16 18:25:27 +0000
committervishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-16 18:25:27 +0000
commit17c9499071a107d64f328b208ec639d85082a30b (patch)
tree1f6d62a9f921e79f79123b5d15f33c67e50f5aa2
parentb2e62a6ef510b4560a3b9f0d69de1f3df4da4d3e (diff)
downloadATCD-17c9499071a107d64f328b208ec639d85082a30b.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-99c6
-rw-r--r--TAO/tests/InterOp-Naming/INS_i.cpp1
-rw-r--r--TAO/tests/InterOp-Naming/INS_i.h3
3 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 65f6d4bb43d..1814fe92f6b 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,9 @@
+Wed Jun 16 13:23:57 1999 Vishal Kachroo <vishal@cs.wustl.edu>
+
+ Fixed ACE_THROW_SPEC.
+ * tests/InterOp-Naming/INS_i.cpp:
+ * tests/InterOp-Naming/INS_i.h:
+
Wed Jun 16 12:30:21 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* tao/Makefile:
diff --git a/TAO/tests/InterOp-Naming/INS_i.cpp b/TAO/tests/InterOp-Naming/INS_i.cpp
index d3911f0cae4..31fce2873ed 100644
--- a/TAO/tests/InterOp-Naming/INS_i.cpp
+++ b/TAO/tests/InterOp-Naming/INS_i.cpp
@@ -25,6 +25,7 @@ INS_i::orb (CORBA::ORB_ptr o)
char *
INS_i::test_ins (CORBA::Environment &env)
+ACE_THROW_SPEC (( CORBA::SystemException ))
{
ACE_DEBUG ((LM_DEBUG,
"Inside Operation\n"));
diff --git a/TAO/tests/InterOp-Naming/INS_i.h b/TAO/tests/InterOp-Naming/INS_i.h
index 6f434965506..c278b2030f8 100644
--- a/TAO/tests/InterOp-Naming/INS_i.h
+++ b/TAO/tests/InterOp-Naming/INS_i.h
@@ -33,7 +33,8 @@ public:
~INS_i (void);
// Destructor.
- char * test_ins (CORBA::Environment &env);
+ char * test_ins (CORBA::Environment &env)
+ ACE_THROW_SPEC (( CORBA::SystemException ));
// test the INS.
void orb (CORBA::ORB_ptr o);