summaryrefslogtreecommitdiff
path: root/ACE/ace/Notification_Queue.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-05-01 11:43:56 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-05-01 11:43:56 +0000
commitf2494f9a571dc35f3bd4d4a1282a5f277668e794 (patch)
tree4b8bae7aa8e9505d435fae2f035baeba1948ef6d /ACE/ace/Notification_Queue.cpp
parent6f7e10dcfada63eba1f1783f61e3d2385db8b858 (diff)
downloadATCD-f2494f9a571dc35f3bd4d4a1282a5f277668e794.tar.gz
Fri May 1 11:43:05 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Event_Handler.cpp: Initialise members in the ACE_Notification_Buffer constructor * ace/Log_Record.h: Doxygen fix * ace/Notification_Queue.cpp: Layout change * ace/Select_Reactor_Base.cpp: Small code simplification
Diffstat (limited to 'ACE/ace/Notification_Queue.cpp')
-rw-r--r--ACE/ace/Notification_Queue.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ACE/ace/Notification_Queue.cpp b/ACE/ace/Notification_Queue.cpp
index a63477084dd..fde56ad3f0a 100644
--- a/ACE/ace/Notification_Queue.cpp
+++ b/ACE/ace/Notification_Queue.cpp
@@ -208,8 +208,7 @@ ACE_Notification_Queue::pop_next_notification(
return 0;
}
- ACE_Notification_Queue_Node * node =
- notify_queue_.pop_front();
+ ACE_Notification_Queue_Node * node = notify_queue_.pop_front();
current = node->get();
free_queue_.push_front(node);