summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-15 14:32:52 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-15 14:32:52 +0000
commitcf51c98b7c17ce58702f8f990f89505d7b4aff25 (patch)
treec290f1d960f36be5d0700f1433b0db845272fd5e
parent61529db1c7359f54ad2f9173a9ed108fef158f95 (diff)
downloadATCD-cf51c98b7c17ce58702f8f990f89505d7b4aff25.tar.gz
ChangeLogTag:Wed Apr 15 09:28:16 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog-98c10
-rw-r--r--TAO/tao/Stub.h2
2 files changed, 11 insertions, 1 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index ba64f45a48a..49629780b1a 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,13 @@
+Wed Apr 15 09:28:16 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * tao/Stub.h:
+ A field was declared <const CORBA::TypeCode_ptr*>, this field is
+ needed to initialize a Sequence that requires a
+ <CORBA::TypeCode**> parameter. The careful reader will notice
+ that there is no implicit conversion between the two types, the
+ first is a pointer to constant TypeCode_ptr no a constant
+ pointer to TypeCode_ptr. Only SGI/C++ detected this problem.
+
Wed Apr 15 09:11:11 1998 David L. Levine <levine@cs.wustl.edu>
* orbsvcs/orbsvcs/Sched/DynSched.cpp (compare_entry_finish_times):
diff --git a/TAO/tao/Stub.h b/TAO/tao/Stub.h
index 916082a8c78..cc945760d28 100644
--- a/TAO/tao/Stub.h
+++ b/TAO/tao/Stub.h
@@ -122,7 +122,7 @@ struct TAO_Call_Data
u_int except_count;
// # exceptions.
- const CORBA::TypeCode_ptr *excepts;
+ CORBA::TypeCode_ptr *excepts;
// Their descriptions.
};