summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-10 12:28:38 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-10 12:28:38 +0100
commitdf1008d5611e10fb8af7c8a49e9d4c7a8c4b7681 (patch)
treec9070c341e07577411c9fae24427557f11be6ce3
parentf6b7d0ccad487a44da5f517a450a8ef982c06efb (diff)
downloadATCD-df1008d5611e10fb8af7c8a49e9d4c7a8c4b7681.tar.gz
Layout changes and remove redundant void
* ACE/ace/SPIPE_Addr.inl:
-rw-r--r--ACE/ace/SPIPE_Addr.inl9
1 files changed, 3 insertions, 6 deletions
diff --git a/ACE/ace/SPIPE_Addr.inl b/ACE/ace/SPIPE_Addr.inl
index b92aed80916..e5ab7bc7fe3 100644
--- a/ACE/ace/SPIPE_Addr.inl
+++ b/ACE/ace/SPIPE_Addr.inl
@@ -5,16 +5,14 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// Compare two addresses for equality.
-
ACE_INLINE bool
ACE_SPIPE_Addr::operator == (const ACE_SPIPE_Addr &sap) const
{
return ACE_OS::strcmp (this->SPIPE_addr_.rendezvous_,
- sap.SPIPE_addr_.rendezvous_ ) == 0;
+ sap.SPIPE_addr_.rendezvous_) == 0;
}
// Compare two addresses for inequality.
-
ACE_INLINE bool
ACE_SPIPE_Addr::operator != (const ACE_SPIPE_Addr &sap) const
{
@@ -22,9 +20,8 @@ ACE_SPIPE_Addr::operator != (const ACE_SPIPE_Addr &sap) const
}
// Return the path name used for the rendezvous point.
-
ACE_INLINE const ACE_TCHAR *
-ACE_SPIPE_Addr::get_path_name (void) const
+ACE_SPIPE_Addr::get_path_name () const
{
return this->SPIPE_addr_.rendezvous_;
}
@@ -42,7 +39,7 @@ ACE_SPIPE_Addr::user_id (uid_t uid)
}
ACE_INLINE gid_t
-ACE_SPIPE_Addr::group_id (void) const
+ACE_SPIPE_Addr::group_id () const
{
return this->SPIPE_addr_.gid_;
}