summaryrefslogtreecommitdiff
path: root/ACE/ace/INET_Addr.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 /ACE/ace/INET_Addr.inl
parent2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff)
downloadATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/INET_Addr.inl')
-rw-r--r--ACE/ace/INET_Addr.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/INET_Addr.inl b/ACE/ace/INET_Addr.inl
index f8aa3f42a1e..871ff931d4d 100644
--- a/ACE/ace/INET_Addr.inl
+++ b/ACE/ace/INET_Addr.inl
@@ -220,7 +220,7 @@ ACE_INET_Addr::is_multicast () const
#if defined (ACE_HAS_IPV6)
// Return @c true if the IP address is IPv6 linklocal address.
ACE_INLINE bool
-ACE_INET_Addr::is_linklocal (void) const
+ACE_INET_Addr::is_linklocal () const
{
if (this->get_type () == AF_INET6)
return IN6_IS_ADDR_LINKLOCAL (&this->inet_addr_.in6_.sin6_addr);
@@ -230,7 +230,7 @@ ACE_INET_Addr::is_linklocal (void) const
// Return @c true if the IP address is IPv6 sitelocal address.
ACE_INLINE bool
-ACE_INET_Addr::is_sitelocal (void) const
+ACE_INET_Addr::is_sitelocal () const
{
if (this->get_type () == AF_INET6)
return IN6_IS_ADDR_SITELOCAL (&this->inet_addr_.in6_.sin6_addr);
@@ -240,7 +240,7 @@ ACE_INET_Addr::is_sitelocal (void) const
// Return @c true if the IP address is IPv4 mapped IPv6 address.
ACE_INLINE bool
-ACE_INET_Addr::is_ipv4_mapped_ipv6 (void) const
+ACE_INET_Addr::is_ipv4_mapped_ipv6 () const
{
if (this->get_type () == AF_INET6)
return IN6_IS_ADDR_V4MAPPED (&this->inet_addr_.in6_.sin6_addr);
@@ -250,7 +250,7 @@ ACE_INET_Addr::is_ipv4_mapped_ipv6 (void) const
// Return @c true if the IP address is IPv4-compatible IPv6 address.
ACE_INLINE bool
-ACE_INET_Addr::is_ipv4_compat_ipv6 (void) const
+ACE_INET_Addr::is_ipv4_compat_ipv6 () const
{
if (this->get_type () == AF_INET6)
return IN6_IS_ADDR_V4COMPAT (&this->inet_addr_.in6_.sin6_addr);