summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-04 18:28:08 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-04 18:28:08 +0000
commitdd4d8af73d1fc8ceabc3fe3bdeb54d13f413b947 (patch)
tree4ae0614dc3516dfd6bede1770739f93ed641e47e
parent87a4253d3d1a3f004a4862656ca5e244577d8db2 (diff)
downloadATCD-dd4d8af73d1fc8ceabc3fe3bdeb54d13f413b947.tar.gz
ChangeLogTag: Mon Mar 4 12:24:52 2002 Jeff Parsons <parsons@cs.wustl.edu>
-rw-r--r--TAO/tao/Any.h3
-rw-r--r--TAO/tao/Any.i7
2 files changed, 0 insertions, 10 deletions
diff --git a/TAO/tao/Any.h b/TAO/tao/Any.h
index bfbd94775af..ebb3cb8d1c7 100644
--- a/TAO/tao/Any.h
+++ b/TAO/tao/Any.h
@@ -477,9 +477,6 @@ public:
/// assignment from a CORBA_Any
CORBA_Any_out &operator= (CORBA_Any *p);
- /// assignment from a const CORBA_Any
- CORBA_Any_out &operator= (const CORBA_Any *p);
-
/// cast
operator CORBA_Any *&();
diff --git a/TAO/tao/Any.i b/TAO/tao/Any.i
index dda79d80e8c..a3656c26813 100644
--- a/TAO/tao/Any.i
+++ b/TAO/tao/Any.i
@@ -383,13 +383,6 @@ CORBA_Any_out::operator= (CORBA_Any *s)
return *this;
}
-ACE_INLINE CORBA_Any_out &
-CORBA_Any_out::operator= (const CORBA_Any *s)
-{
- this->ptr_ = new CORBA::Any (*s);
- return *this;
-}
-
ACE_INLINE
CORBA_Any_out::operator CORBA_Any *&()
{