diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-13 18:32:11 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-13 18:32:11 +0000 |
commit | 8726ff03ec66137054c8ae214db54747d31d8571 (patch) | |
tree | 303e8a13bd851f0db75806b550e64c4e0dc25a6e /ace/Priority_Reactor.i | |
parent | ab5d61787cca54362dd7e82f2e439bcae449f43b (diff) | |
download | ATCD-8726ff03ec66137054c8ae214db54747d31d8571.tar.gz |
reordered initializers to match declaration order
Diffstat (limited to 'ace/Priority_Reactor.i')
-rw-r--r-- | ace/Priority_Reactor.i | 8 |
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) { } |