summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO.cpp
diff options
context:
space:
mode:
authorsbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-01 20:13:15 +0000
committersbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-01 20:13:15 +0000
commit01c7e9b7e5f5631b021103d94c1855c71819d7a3 (patch)
tree6e4c3b793eedacb04c88a928c3ea49b06576ac91 /TAO/tao/TAO.cpp
parent766b07c0c6675999d52c4ce7171049abf57066c0 (diff)
downloadATCD-01c7e9b7e5f5631b021103d94c1855c71819d7a3.tar.gz
Passing argc by reference in TAO_ORB_Manager::init
Diffstat (limited to 'TAO/tao/TAO.cpp')
-rw-r--r--TAO/tao/TAO.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/TAO.cpp b/TAO/tao/TAO.cpp
index ee05cb69b7e..441983eeccf 100644
--- a/TAO/tao/TAO.cpp
+++ b/TAO/tao/TAO.cpp
@@ -29,7 +29,7 @@ TAO_ORB_Manager::TAO_ORB_Manager (CORBA::ORB_ptr orb,
// poa_name is a user-supplied string that is used to name the POA
// created.
int
-TAO_ORB_Manager::init (int argc,
+TAO_ORB_Manager::init (int& argc,
char **argv,
CORBA::Environment &env)
{
@@ -76,7 +76,7 @@ TAO_ORB_Manager::init (int argc,
// Initialize the child poa.
int
-TAO_ORB_Manager::init_child_poa (int argc,
+TAO_ORB_Manager::init_child_poa (int& argc,
char **argv,
char *poa_name,
CORBA_Environment &env)