summaryrefslogtreecommitdiff
path: root/TAO/tao/ORB.i
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1998-10-01 16:45:15 +0000
committergokhale <asgokhale@users.noreply.github.com>1998-10-01 16:45:15 +0000
commit79193cde97c7bb51e3f6a833bbecb6d791fcff86 (patch)
treecea0bfac061965d465a76cfcc200961352b55e4c /TAO/tao/ORB.i
parent3e934235d9a0fb0e1bcb847a232b0c958623225e (diff)
downloadATCD-79193cde97c7bb51e3f6a833bbecb6d791fcff86.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/ORB.i')
-rw-r--r--TAO/tao/ORB.i11
1 files changed, 2 insertions, 9 deletions
diff --git a/TAO/tao/ORB.i b/TAO/tao/ORB.i
index 8eeb1f776ae..d75a719103c 100644
--- a/TAO/tao/ORB.i
+++ b/TAO/tao/ORB.i
@@ -105,13 +105,13 @@ CORBA::String_out::String_out (CORBA::String_var &s)
}
ACE_INLINE
-CORBA::String_out::String_out (CORBA::String_out &s)
+CORBA::String_out::String_out (const CORBA::String_out &s)
: ptr_ (s.ptr_)
{
}
ACE_INLINE CORBA::String_out &
-CORBA::String_out::operator= (CORBA::String_out &s)
+CORBA::String_out::operator= (const CORBA::String_out &s)
{
this->ptr_ = s.ptr_;
return *this;
@@ -124,13 +124,6 @@ CORBA::String_out::operator= (char *s)
return *this;
}
-ACE_INLINE CORBA::String_out &
-CORBA::String_out::operator= (const char *s)
-{
- this->ptr_ = CORBA::string_dup (s);
- return *this;
-}
-
ACE_INLINE
CORBA::String_out::operator char *&()
{