summaryrefslogtreecommitdiff
path: root/TAO/tao/Seq_Var_T.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
commit104d9f8a30c479fe661883b295f120ab035645d9 (patch)
treeaa39aaa576d8ce2e1666df7a750d77df1a33232e /TAO/tao/Seq_Var_T.inl
parent2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff)
downloadATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz
Removed redundant void
Diffstat (limited to 'TAO/tao/Seq_Var_T.inl')
-rw-r--r--TAO/tao/Seq_Var_T.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Seq_Var_T.inl b/TAO/tao/Seq_Var_T.inl
index bee41dfe39c..6d96a3176af 100644
--- a/TAO/tao/Seq_Var_T.inl
+++ b/TAO/tao/Seq_Var_T.inl
@@ -25,7 +25,7 @@ TAO_Seq_Var_Base_T<T>::~TAO_Seq_Var_Base_T (void)
template<typename T>
ACE_INLINE
const T *
-TAO_Seq_Var_Base_T<T>::operator-> (void) const
+TAO_Seq_Var_Base_T<T>::operator-> () const
{
return this->ptr_;
}
@@ -62,7 +62,7 @@ TAO_Seq_Var_Base_T<T>::operator T & () const
template<typename T>
ACE_INLINE
const T &
-TAO_Seq_Var_Base_T<T>::in (void) const
+TAO_Seq_Var_Base_T<T>::in () const
{
return *this->ptr_;
}
@@ -98,7 +98,7 @@ TAO_Seq_Var_Base_T<T>::_retn (void)
template<typename T>
ACE_INLINE
T *
-TAO_Seq_Var_Base_T<T>::ptr (void) const
+TAO_Seq_Var_Base_T<T>::ptr () const
{
return this->ptr_;
}