summaryrefslogtreecommitdiff
path: root/ace/FILE_Addr.h
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1997-11-07 03:21:52 +0000
committerSteve Huston <shuston@riverace.com>1997-11-07 03:21:52 +0000
commita17646afec6e82dab9b7f5dee600ad764477bc72 (patch)
treef1ce04c7655a9c28f7233f12ad5dc253e5d32d8e /ace/FILE_Addr.h
parent06cfc98eedbedb12028c0520095d9d5e9617ba0e (diff)
downloadATCD-a17646afec6e82dab9b7f5dee600ad764477bc72.tar.gz
Changed operators == and != to be non-virtual, and to take the 'sap' argument
as their own type (not ACE_Addr). Changed the implementations to use more of the type-specific data.
Diffstat (limited to 'ace/FILE_Addr.h')
-rw-r--r--ace/FILE_Addr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/FILE_Addr.h b/ace/FILE_Addr.h
index e49240dbe7f..733dcf08f69 100644
--- a/ace/FILE_Addr.h
+++ b/ace/FILE_Addr.h
@@ -53,10 +53,10 @@ public:
virtual int addr_to_string (char *addr, size_t) const;
// Transform the current address into string format.
- virtual int operator == (const ACE_Addr &SAP) const;
+ int operator == (const ACE_FILE_Addr &SAP) const;
// Compare two addresses for equality.
- virtual int operator != (const ACE_Addr &SAP) const;
+ int operator != (const ACE_FILE_Addr &SAP) const;
// Compare two addresses for inequality.
LPCTSTR get_path_name (void) const;