summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-07 02:28:19 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-07 02:28:19 +0000
commit099e26a0e364cbdd6794df53f49eefe1dac0a387 (patch)
tree61a3a68eb6b028fce1f5fa6e06d925d1a45f3a76
parent6ff1d3ee889486450c0118fdeb495018d02578f1 (diff)
downloadATCD-099e26a0e364cbdd6794df53f49eefe1dac0a387.tar.gz
ChangeLogTag: Sun Apr 6 21:26:24 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Supplier.cpp4
2 files changed, 9 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 72038a2ebb3..cc47845f586 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Sun Apr 6 21:26:24 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Suppler.cpp:
+
+ Changed use of Any extraction operator to use spec-preferred
+ const Any*.
+
Sun Apr 6 18:03:45 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_helper.cpp:
diff --git a/TAO/orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Supplier.cpp b/TAO/orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Supplier.cpp
index 5697edbf346..99006c301e3 100644
--- a/TAO/orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Supplier.cpp
+++ b/TAO/orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Supplier.cpp
@@ -133,7 +133,7 @@ Supplier::run (void)
// Create an Any type to pass to the Cos EC.
CORBA::Any cany;
cany <<= CORBA::Long (50);
- CORBA::Any any;
+ const CORBA::Any *any;
cany >>= any;
this->open (this->cos_ec_
@@ -151,7 +151,7 @@ Supplier::run (void)
count != 0;
count--)
{
- this->send_event (any
+ this->send_event (*any
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
}