diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-23 03:06:19 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-23 03:06:19 +0000 |
commit | 25e3a0c84479d9807535ecee744ff579c12890ff (patch) | |
tree | 517d13a21fce9eefd531d325e4edb5ba94f70e58 /ace/Strategies_T.i | |
parent | 3c54f9635353759fb2af3785a62987827a42abb9 (diff) | |
download | ATCD-25e3a0c84479d9807535ecee744ff579c12890ff.tar.gz |
ChangeLogTag:Thu Apr 22 20:01:12 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/Strategies_T.i')
-rw-r--r-- | ace/Strategies_T.i | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ace/Strategies_T.i b/ace/Strategies_T.i index 41582fc6e95..9a91518d359 100644 --- a/ace/Strategies_T.i +++ b/ace/Strategies_T.i @@ -1,4 +1,5 @@ -/* -*- C++ -*- */ +// -*- C++ -*- +// // $Id$ template<class SVC_HANDLER> ASYS_INLINE @@ -382,14 +383,15 @@ ACE_Refcounted_Hash_Recyclable<T>::subject (void) return this->t_; } -template <class T> ASYS_INLINE int +template <class T> ASYS_INLINE bool ACE_Refcounted_Hash_Recyclable<T>::operator== (const ACE_Refcounted_Hash_Recyclable<T> &rhs) const { - return this->recycle_state () == rhs.recycle_state () && - this->t_ == rhs.t_; + return + this->recycle_state () == rhs.recycle_state () + && this->t_ == rhs.t_; } -template <class T> ASYS_INLINE int +template <class T> ASYS_INLINE bool ACE_Refcounted_Hash_Recyclable<T>::operator!= (const ACE_Refcounted_Hash_Recyclable<T> &rhs) const { return !this->operator== (rhs); |