diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-04-08 16:28:39 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-04-08 16:28:39 +0000 |
commit | 92f87ffa62e13094e4be4abd20ca2043971a8fbb (patch) | |
tree | 4b126eeed6c27c72f53b1a3e6014e5735edc6cd0 | |
parent | fc8766f0e7159912d6f5d88d9c505930240f0e9c (diff) | |
download | ATCD-92f87ffa62e13094e4be4abd20ca2043971a8fbb.tar.gz |
ChangeLogTag:Fri Apr 8 09:27:43 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r-- | TAO/ChangeLog | 7 | ||||
-rw-r--r-- | TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp | 5 |
2 files changed, 11 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 84affeed1b0..81852d4ec33 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,10 @@ +Fri Apr 8 09:27:43 2005 Ossama Othman <ossama@dre.vanderbilt.edu> + + * orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp + (invoke_and_display): + + Another emulated exception macro usage fix. + Fri Apr 8 09:22:05 2005 Ossama Othman <ossama@dre.vanderbilt.edu> * orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp diff --git a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp index e646d208b92..cfe34aa5cf4 100644 --- a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp +++ b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp @@ -339,7 +339,10 @@ IFR_DII_Client::invoke_and_display (ACE_ENV_SINGLE_ARG_DECL) CORBA::TypeCode_var tc = this->req_->return_value ().type (); - if (tc->kind () == CORBA::tk_boolean) + CORBA::TCKind const kind = tc->kind (ACE_ENV_SINGLE_ARG_PARAMETER); + ACE_CHECK; + + if (kind == CORBA::tk_boolean) { CORBA::NVList_ptr args = this->req_->arguments (); |