summaryrefslogtreecommitdiff
path: root/TAO/tao/Wait_On_Leader_Follower.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-27 11:41:01 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-27 11:41:01 +0000
commit42fd6eabf23d8fe56302d39e552593723e6f256e (patch)
tree34799c39b0d3afa254b9c2d5cc5a035f76a06a05 /TAO/tao/Wait_On_Leader_Follower.cpp
parent122d84a5f074a9a28c7e25e4324f47b60a0cb2d4 (diff)
downloadATCD-42fd6eabf23d8fe56302d39e552593723e6f256e.tar.gz
ChangeLogTag: Tue Mar 27 05:36:10 2001 Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Wait_On_Leader_Follower.cpp')
-rw-r--r--TAO/tao/Wait_On_Leader_Follower.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Wait_On_Leader_Follower.cpp b/TAO/tao/Wait_On_Leader_Follower.cpp
index 4cda5f6a4c2..1028b7ed977 100644
--- a/TAO/tao/Wait_On_Leader_Follower.cpp
+++ b/TAO/tao/Wait_On_Leader_Follower.cpp
@@ -92,7 +92,7 @@ TAO_Wait_On_Leader_Follower::wait (ACE_Time_Value *max_wait_time,
cond));
// Keep the entry on the stack
- ACE_NESTED_CLASS (TAO_Leader_Follower, TAO_Follower_Node) node(cond);
+ TAO_Leader_Follower::TAO_Follower_Node node (cond);
while (!reply_received &&
leader_follower.leader_available ())
@@ -321,7 +321,7 @@ TAO_Wait_On_Leader_Follower::reply_dispatched (int &reply_received_flag,
// The following works as the node is assumed to be on the stack
// till the thread is alive.
- ACE_NESTED_CLASS (TAO_Leader_Follower, TAO_Follower_Node) node (condition);
+ TAO_Leader_Follower::TAO_Follower_Node node (condition);
// We *must* remove it when we signal it so the same condition
// is not signalled for both wake up as a follower and as the
@@ -355,7 +355,7 @@ TAO_Wait_On_Leader_Follower::connection_closed (int &reply_received_flag,
// The following works as the node is assumed to be on the stack
// till the thread is alive.
- ACE_NESTED_CLASS (TAO_Leader_Follower, TAO_Follower_Node) node(condition);
+ TAO_Leader_Follower::TAO_Follower_Node node (condition);
(void) leader_follower.remove_follower (&node);