summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Refcountable_Guard_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Refcountable_Guard_T.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Refcountable_Guard_T.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Refcountable_Guard_T.inl b/TAO/orbsvcs/orbsvcs/Notify/Refcountable_Guard_T.inl
index 874c8d31942..13455481ebd 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Refcountable_Guard_T.inl
+++ b/TAO/orbsvcs/orbsvcs/Notify/Refcountable_Guard_T.inl
@@ -25,14 +25,14 @@ TAO_Notify_Refcountable_Guard_T<T>::~TAO_Notify_Refcountable_Guard_T ()
template <class T> ACE_INLINE
T*
-TAO_Notify_Refcountable_Guard_T<T>::get (void) const
+TAO_Notify_Refcountable_Guard_T<T>::get () const
{
return this->t_;
}
template <class T> ACE_INLINE
bool
-TAO_Notify_Refcountable_Guard_T<T>::isSet (void) const
+TAO_Notify_Refcountable_Guard_T<T>::isSet () const
{
return ( this->t_ != static_cast< T* >( 0 ) );
}
@@ -40,7 +40,7 @@ TAO_Notify_Refcountable_Guard_T<T>::isSet (void) const
template <class T> ACE_INLINE
T*
-TAO_Notify_Refcountable_Guard_T<T>::operator-> (void) const
+TAO_Notify_Refcountable_Guard_T<T>::operator-> () const
{
ACE_ASSERT ( this->t_ != static_cast< T* >( 0 ) );
return this->t_;
@@ -48,7 +48,7 @@ TAO_Notify_Refcountable_Guard_T<T>::operator-> (void) const
template <class T> ACE_INLINE
T&
-TAO_Notify_Refcountable_Guard_T<T>::operator* (void) const
+TAO_Notify_Refcountable_Guard_T<T>::operator* () const
{
ACE_ASSERT ( this->t_ != static_cast< T* >( 0 ) );
return *this->t_;