summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-09 19:34:40 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-09 19:34:40 +0000
commitd26f95e208515c930f805c73a45aef26a4258133 (patch)
treeb95799f2eacc3514576d79568f83ab1f0c94e70b
parent4e38fa78edb99844de31987c4a50a8f1c0a31c9c (diff)
downloadATCD-d26f95e208515c930f805c73a45aef26a4258133.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-99c7
-rw-r--r--TAO/tao/Any.cpp2
-rw-r--r--TAO/tao/Any.h2
3 files changed, 9 insertions, 2 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index dbc1beb1e7c..b8195198779 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,10 @@
+Fri Apr 9 14:29:42 1999 Jeff Parsons <parsons@cs.wustl.edu>
+
+ * tao/Any.{h,cpp}:
+ Changed the argument of the static dump() function
+ from const value to const reference. Thanks to
+ Ulf Jährig <jaehrig@desys.com> for suggesting this.
+
Fri Apr 9 13:28:06 1999 Vishal Kachroo <vishal@cs.wustl.edu>
Added the following .xls files :
diff --git a/TAO/tao/Any.cpp b/TAO/tao/Any.cpp
index ca518087597..52e9b34e54d 100644
--- a/TAO/tao/Any.cpp
+++ b/TAO/tao/Any.cpp
@@ -859,7 +859,7 @@ CORBA_Any_var::operator= (const CORBA::Any_var& r)
// supported only for standard data types.
void
-CORBA_Any::dump (const CORBA::Any any_value)
+CORBA_Any::dump (const CORBA::Any &any_value)
{
CORBA::Environment env;
diff --git a/TAO/tao/Any.h b/TAO/tao/Any.h
index 182427ffedc..2bc1ef2b49c 100644
--- a/TAO/tao/Any.h
+++ b/TAO/tao/Any.h
@@ -269,7 +269,7 @@ public:
// = Debugging method.
- static void dump (const CORBA::Any any_value);
+ static void dump (const CORBA::Any &any_value);
// Prints the type and the value of the any value. Dumping is
// supported only for standard data types.