diff options
Diffstat (limited to 'ACE/ace/Strategies_T.inl')
-rw-r--r-- | ACE/ace/Strategies_T.inl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Strategies_T.inl b/ACE/ace/Strategies_T.inl index 3c6581d2399..30c784200a5 100644 --- a/ACE/ace/Strategies_T.inl +++ b/ACE/ace/Strategies_T.inl @@ -183,7 +183,7 @@ ACE_Schedule_All_Threaded_Strategy<SVC_HANDLER>::ACE_Schedule_All_Threaded_Strat template <class T> ACE_INLINE ACE_Refcounted_Hash_Recyclable<T>::ACE_Refcounted_Hash_Recyclable (void) - : ACE_Refcountable (0), + : ACE_Refcountable_T<ACE_Null_Mutex> (0), ACE_Hashable (), ACE_Recyclable (ACE_RECYCLABLE_UNKNOWN), t_ () @@ -194,7 +194,7 @@ template <class T> ACE_INLINE ACE_Refcounted_Hash_Recyclable<T>::ACE_Refcounted_Hash_Recyclable (const T &t, long refcount, ACE_Recyclable_State state) - : ACE_Refcountable (refcount), + : ACE_Refcountable_T<ACE_Null_Mutex> (refcount), ACE_Hashable (), ACE_Recyclable (state), t_ (t) |