summaryrefslogtreecommitdiff
path: root/ace/Priority_Reactor.i
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-13 18:32:11 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-13 18:32:11 +0000
commit8726ff03ec66137054c8ae214db54747d31d8571 (patch)
tree303e8a13bd851f0db75806b550e64c4e0dc25a6e /ace/Priority_Reactor.i
parentab5d61787cca54362dd7e82f2e439bcae449f43b (diff)
downloadATCD-8726ff03ec66137054c8ae214db54747d31d8571.tar.gz
reordered initializers to match declaration order
Diffstat (limited to 'ace/Priority_Reactor.i')
-rw-r--r--ace/Priority_Reactor.i8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Priority_Reactor.i b/ace/Priority_Reactor.i
index 8876a83cfdb..a93cc5a6301 100644
--- a/ace/Priority_Reactor.i
+++ b/ace/Priority_Reactor.i
@@ -3,16 +3,16 @@
ACE_INLINE
ACE_Event_Tuple::ACE_Event_Tuple (void)
-: event_handler_ (0),
- handle_ (ACE_INVALID_HANDLE)
+: handle_ (ACE_INVALID_HANDLE),
+ event_handler_ (0)
{
}
ACE_INLINE
ACE_Event_Tuple::ACE_Event_Tuple (ACE_Event_Handler* eh,
ACE_HANDLE h)
-: event_handler_ (eh),
- handle_ (h)
+: handle_ (h),
+ event_handler_ (eh)
{
}