diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-15 02:26:36 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-15 02:26:36 +0000 |
commit | e580a94da2b005bae0cdfe15fabd7c0cff50fbac (patch) | |
tree | 99450d46414d0880fea202e4447db323d3d6ed6f /ace | |
parent | 9b8a49eadf1fb2e77d6908c18f3065493a47c033 (diff) | |
download | ATCD-e580a94da2b005bae0cdfe15fabd7c0cff50fbac.tar.gz |
(implementation): moved definition to top of file to prevent use before definition
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Reactor.i | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ace/Reactor.i b/ace/Reactor.i index 5e1e5bec031..d53bba16797 100644 --- a/ace/Reactor.i +++ b/ace/Reactor.i @@ -4,6 +4,18 @@ #include "ace/Reactor_Impl.h" #include "ace/Handle_Set.h" +ACE_INLINE ACE_Reactor_Impl * +ACE_Reactor::implementation (void) +{ + return this->implementation_; +} + +ACE_INLINE void +ACE_Reactor::implementation (ACE_Reactor_Impl *impl) +{ + this->implementation_ = impl; +} + ACE_INLINE int ACE_Reactor::open (size_t size, int restart, @@ -446,18 +458,6 @@ ACE_Reactor::size (void) return this->implementation ()->size (); } -ACE_INLINE ACE_Reactor_Impl * -ACE_Reactor::implementation (void) -{ - return this->implementation_; -} - -ACE_INLINE void -ACE_Reactor::implementation (ACE_Reactor_Impl *impl) -{ - this->implementation_ = impl; -} - ACE_INLINE int ACE_Reactor::uses_event_associations (void) { |