summaryrefslogtreecommitdiff
path: root/TAO/tao/Any.i
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-11 19:58:44 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-11 19:58:44 +0000
commita670d49d971124cb34b13fabf96186cde28ef48a (patch)
tree77732ff10aed527e52ecaa36908afab0633d0361 /TAO/tao/Any.i
parent12a4237e4fc5d44a434208a14bb65aff211b1fb2 (diff)
downloadATCD-a670d49d971124cb34b13fabf96186cde28ef48a.tar.gz
(operator<<=): un-inlined, to avoid use of inline CORBA::string_dup () before definition
Diffstat (limited to 'TAO/tao/Any.i')
-rw-r--r--TAO/tao/Any.i11
1 files changed, 1 insertions, 10 deletions
diff --git a/TAO/tao/Any.i b/TAO/tao/Any.i
index 132b7e81123..9913ee5dc2e 100644
--- a/TAO/tao/Any.i
+++ b/TAO/tao/Any.i
@@ -1,5 +1,5 @@
-// $Id$
// This may look like C, but it's really -*- C++ -*-
+// $Id$
// Insertion from special types.
@@ -78,15 +78,6 @@ CORBA_Any::operator<<= (const CORBA_Any& a)
this->replace (CORBA::_tc_any, new CORBA_Any (a), 1, env);
}
-// this is a copying version for unbounded strings
-ACE_INLINE void
-CORBA_Any::operator<<= (const char* s)
-{
- CORBA::Environment env;
- this->replace (CORBA::_tc_string, new char* (CORBA::string_dup (s)),
- 1, env);
-}
-
// implementing the special types
ACE_INLINE
CORBA_Any::to_object::to_object (CORBA::Object_ptr &obj)