diff options
Diffstat (limited to 'protocols/ace/RMCast')
-rw-r--r-- | protocols/ace/RMCast/RMCast_Copy_On_Write.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ace/RMCast/RMCast_Copy_On_Write.h b/protocols/ace/RMCast/RMCast_Copy_On_Write.h index 605970c7c85..5efac63e80f 100644 --- a/protocols/ace/RMCast/RMCast_Copy_On_Write.h +++ b/protocols/ace/RMCast/RMCast_Copy_On_Write.h @@ -49,10 +49,10 @@ public: ACE_RMCast_Copy_On_Write_Container (void); //! Let the Write_Guard access the internal fields. - friend ACE_RMCast_Copy_On_Write_Write_Guard<COLLECTION,ITERATOR>; + friend class ACE_RMCast_Copy_On_Write_Write_Guard<COLLECTION,ITERATOR>; //! Let the Read_Guard access the internal fields. - friend ACE_RMCast_Copy_On_Write_Read_Guard<COLLECTION,ITERATOR>; + friend class ACE_RMCast_Copy_On_Write_Read_Guard<COLLECTION,ITERATOR>; //! A shorter name for the actual collection type typedef ACE_RMCast_Copy_On_Write_Collection<COLLECTION,ITERATOR> Collection; |