summaryrefslogtreecommitdiff
path: root/TAO/tao/Vector_Argument_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Vector_Argument_T.inl')
-rw-r--r--TAO/tao/Vector_Argument_T.inl9
1 files changed, 4 insertions, 5 deletions
diff --git a/TAO/tao/Vector_Argument_T.inl b/TAO/tao/Vector_Argument_T.inl
index 64cb530b676..ced1dda2f53 100644
--- a/TAO/tao/Vector_Argument_T.inl
+++ b/TAO/tao/Vector_Argument_T.inl
@@ -13,7 +13,7 @@ template<typename S,
template <typename> class Insert_Policy>
ACE_INLINE
S const &
-TAO::In_Vector_Argument_T<S,Insert_Policy>::arg (void) const
+TAO::In_Vector_Argument_T<S,Insert_Policy>::arg () const
{
return this->x_;
}
@@ -40,7 +40,7 @@ template<typename S,
template <typename> class Insert_Policy>
ACE_INLINE
S &
-TAO::Inout_Vector_Argument_T<S,Insert_Policy>::arg (void)
+TAO::Inout_Vector_Argument_T<S,Insert_Policy>::arg ()
{
return this->x_;
}
@@ -51,8 +51,7 @@ template<typename S,
template <typename> class Insert_Policy>
ACE_INLINE
TAO::Out_Vector_Argument_T<S,Insert_Policy>::Out_Vector_Argument_T (
- S & x
- )
+ S & x)
: x_ (x)
{}
@@ -60,7 +59,7 @@ template<typename S,
template <typename> class Insert_Policy>
ACE_INLINE
S &
-TAO::Out_Vector_Argument_T<S,Insert_Policy>::arg (void)
+TAO::Out_Vector_Argument_T<S,Insert_Policy>::arg ()
{
return this->x_;
}