summaryrefslogtreecommitdiff
path: root/ACE/ace/Service_Types.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 13:40:11 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 13:40:11 +0100
commit900d6095f897d8c69fea522221675bdec225dbba (patch)
treec260d476fc15fc89f0733b639c11ace3a019d462 /ACE/ace/Service_Types.inl
parent68af84b8a645ccf8f2d45ba545ec0acf84bc8335 (diff)
downloadATCD-900d6095f897d8c69fea522221675bdec225dbba.tar.gz
Remove redundant void arg
Diffstat (limited to 'ACE/ace/Service_Types.inl')
-rw-r--r--ACE/ace/Service_Types.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Service_Types.inl b/ACE/ace/Service_Types.inl
index cb13c1c4ec4..f32aa55c9fd 100644
--- a/ACE/ace/Service_Types.inl
+++ b/ACE/ace/Service_Types.inl
@@ -4,14 +4,14 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE void *
-ACE_Service_Type_Impl::object (void) const
+ACE_Service_Type_Impl::object () const
{
ACE_TRACE ("ACE_Service_Type_Impl::object");
return this->obj_;
}
ACE_INLINE const ACE_TCHAR *
-ACE_Service_Type_Impl::name (void) const
+ACE_Service_Type_Impl::name () const
{
ACE_TRACE ("ACE_Service_Type_Impl::name");
return this->name_;
@@ -27,7 +27,7 @@ ACE_Service_Type_Impl::name (const ACE_TCHAR *n)
}
ACE_INLINE int
-ACE_Service_Type_Impl::service_type (void) const
+ACE_Service_Type_Impl::service_type () const
{
return service_type_;
}