summaryrefslogtreecommitdiff
path: root/ace/Addr.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Addr.inl')
-rw-r--r--ace/Addr.inl7
1 files changed, 2 insertions, 5 deletions
diff --git a/ace/Addr.inl b/ace/Addr.inl
index 3780e04b6aa..34457d86612 100644
--- a/ace/Addr.inl
+++ b/ace/Addr.inl
@@ -4,20 +4,19 @@
// Return the address of the address.
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE bool
ACE_Addr::operator == (const ACE_Addr &sap) const
{
return (sap.addr_type_ == this->addr_type_ &&
- sap.addr_size_ == this->addr_size_ );
+ sap.addr_size_ == this->addr_size_ );
}
ACE_INLINE bool
ACE_Addr::operator != (const ACE_Addr &sap) const
{
return (sap.addr_type_ != this->addr_type_ ||
- sap.addr_size_ != this->addr_size_ );
+ sap.addr_size_ != this->addr_size_ );
}
// Return the size of the address.
@@ -57,5 +56,3 @@ ACE_Addr::hash (void) const
{
return 0;
}
-
-ACE_END_VERSIONED_NAMESPACE_DECL