summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-12 14:52:27 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-12 14:52:27 +0000
commitbc476661320a71874c0367a2d08043531aaeebef (patch)
treeb7f80722ba7242ea4a3439c6964451b7ad00c0fb /TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp
parent4b51ce63f40fe0f5f209cbf97c3522874efe461f (diff)
downloadATCD-bc476661320a71874c0367a2d08043531aaeebef.tar.gz
(TAO_NamingContext ctor): reordered initializers to match declaration order
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp b/TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp
index e77b7b80702..b6ec07b6c38 100644
--- a/TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Naming/CosNaming_i.cpp
@@ -22,13 +22,13 @@ TAO_NamingContext::TAO_NamingContext (PortableServer::POA_ptr poa,
const char *poa_id,
size_t default_hash_table_size,
int root)
- : root_ (root),
+ : context_ (0),
+ root_ (root),
lock_ (0),
poa_ (PortableServer::POA::_duplicate (poa)),
counter_ (0),
hash_table_size_ (default_hash_table_size),
- poa_id_ (poa_id),
- context_ (0)
+ poa_id_ (poa_id)
{
ACE_NEW (context_,
HASH_MAP (hash_table_size_));