diff options
author | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-27 22:43:47 +0000 |
---|---|---|
committer | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-27 22:43:47 +0000 |
commit | 23e43dc6e40b2f6ed6c311db924476c552a018b2 (patch) | |
tree | 9ae7b65a47be96b5b9dc5e7785fb45ce4ba1e067 /TAO/tao/ORB.i | |
parent | 89af93cb774fdfaf557aa694508afcd400a88f01 (diff) | |
download | ATCD-23e43dc6e40b2f6ed6c311db924476c552a018b2.tar.gz |
copy constructor needed a const argument
Diffstat (limited to 'TAO/tao/ORB.i')
-rw-r--r-- | TAO/tao/ORB.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/ORB.i b/TAO/tao/ORB.i index 70b65e523b2..de9444522a6 100644 --- a/TAO/tao/ORB.i +++ b/TAO/tao/ORB.i @@ -445,7 +445,7 @@ CORBA_ORB_out::CORBA_ORB_out (CORBA_ORB_var &p) // constructor from _var } ACE_INLINE -CORBA_ORB_out::CORBA_ORB_out (CORBA_ORB_out &p) // copy constructor +CORBA_ORB_out::CORBA_ORB_out (const CORBA_ORB_out &p) // copy constructor : ptr_ (p.ptr_) {} |