summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-22 18:28:49 +0000
committersbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-22 18:28:49 +0000
commit03c2c8b7799d64aaef95f055ba00b0fd43f6b233 (patch)
treec607c79d2afd1aeefa09a71a467168868662aa83
parented9739560b84759dc3783ddff47bf200104dbd06 (diff)
downloadATCD-03c2c8b7799d64aaef95f055ba00b0fd43f6b233.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-98c10
-rw-r--r--TAO/tao/Server_Request.cpp2
2 files changed, 11 insertions, 1 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index d50198eef1e..7241adc65b9 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,13 @@
+Wed Jul 22 12:41:22 1998 Seth Benjamin Widoff <sbw1@waltz.cs.wustl.edu>
+
+ * orbsvcs/orbsvcs/Trader/Constraint_Nodes.cpp:
+ * orbsvcs/orbsvcs/Trader/Offer_Database.h:
+ * orbsvcs/orbsvcs/Trader/Offer_Iterators.cpp:
+ * orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp:
+ * orbsvcs/orbsvcs/Trader/Trader_T.cpp:
+ * orbsvcs/orbsvcs/Trader/Trader_Utils.{h,cpp}:
+ Used CORBA::is_nil consistently. Fixed purify warning.
+
Wed Jul 22 11:55:35 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
* tao/Any.cpp:
diff --git a/TAO/tao/Server_Request.cpp b/TAO/tao/Server_Request.cpp
index 4adf1f5d364..11d2b7018b8 100644
--- a/TAO/tao/Server_Request.cpp
+++ b/TAO/tao/Server_Request.cpp
@@ -290,7 +290,7 @@ IIOP_ServerRequest::set_exception (const CORBA::Any &value,
// @@ TODO Does this work in all the cases? Shouldn't we use
// operator= or something similar?
CORBA::TypeCode_var type = value.type ();
- this->exception_->replace (type, value.value (), 1, env);
+ this->exception_->replace (type.in (), value.value (), 1, env);
// @@ This cast is not safe, but we haven't implemented the >>=
// and <<= operators for base exceptions (yet).