summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-06 21:14:59 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-06 21:14:59 +0000
commit10cbe52cc5f544f148d320b0e9d870efec220b5a (patch)
tree9f4292ab6437fdac173a3ff699625532dea22bc4
parentf268e133fe4effa933540d488eed107254e65cce (diff)
downloadATCD-10cbe52cc5f544f148d320b0e9d870efec220b5a.tar.gz
Moved member CORBA::ORB_var orb_ up ahead of the other _vars in the class.
-rw-r--r--TAO/performance-tests/Pluggable/PP_Test_Client.cpp3
-rw-r--r--TAO/performance-tests/Pluggable/PP_Test_Client.h6
2 files changed, 5 insertions, 4 deletions
diff --git a/TAO/performance-tests/Pluggable/PP_Test_Client.cpp b/TAO/performance-tests/Pluggable/PP_Test_Client.cpp
index 92fdd6581fe..7de9ef04994 100644
--- a/TAO/performance-tests/Pluggable/PP_Test_Client.cpp
+++ b/TAO/performance-tests/Pluggable/PP_Test_Client.cpp
@@ -49,7 +49,8 @@ ACE_TIMEPROBE_EVENT_DESCRIPTIONS (PP_Test_Client_Timeprobe_Description,
// Constructor.
PP_Test_Client::PP_Test_Client (int shutdown)
- : factory_key_ (0),
+ : orb_ (0),
+ factory_key_ (0),
loop_count_ (1),
shutdown_ (shutdown),
objref_ (Pluggable_Test::_nil ()),
diff --git a/TAO/performance-tests/Pluggable/PP_Test_Client.h b/TAO/performance-tests/Pluggable/PP_Test_Client.h
index e7761c348c1..ac817bf8db9 100644
--- a/TAO/performance-tests/Pluggable/PP_Test_Client.h
+++ b/TAO/performance-tests/Pluggable/PP_Test_Client.h
@@ -83,6 +83,9 @@ private:
char **argv_;
// arguments from command line.
+ CORBA::ORB_var orb_;
+ // Remember our orb.
+
char *factory_key_;
// Key of factory obj ref.
@@ -101,9 +104,6 @@ private:
Pluggable_Test_var objref_;
// Pluggable_Test obj ref.
- CORBA::ORB_var orb_;
- // Remember our orb.
-
u_int call_count_;
// # of calls made to functions.