summaryrefslogtreecommitdiff
path: root/TAO/tao/Cache_Entries.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-04-23 06:19:12 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-04-23 06:19:12 +0000
commit0846a01f27286496e0719ccf9dc08fc50e36e61f (patch)
treece77feb2f063a118db101d355260890eb6f92ad4 /TAO/tao/Cache_Entries.h
parentec15bf46a6233e32ded2780645d8281241856ecc (diff)
downloadATCD-0846a01f27286496e0719ccf9dc08fc50e36e61f.tar.gz
ChangeLogTag:Thu Apr 22 23:15:20 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Cache_Entries.h')
-rw-r--r--TAO/tao/Cache_Entries.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Cache_Entries.h b/TAO/tao/Cache_Entries.h
index 6c21e9bcb22..054d1a0115a 100644
--- a/TAO/tao/Cache_Entries.h
+++ b/TAO/tao/Cache_Entries.h
@@ -61,10 +61,10 @@ public:
TAO_Cache_IntId& operator= (const TAO_Cache_IntId &rhs);
/// Equality comparison operator (must match both id_ and kind_).
- int operator== (const TAO_Cache_IntId &rhs) const;
+ bool operator== (const TAO_Cache_IntId &rhs) const;
/// Inequality comparison operator.
- int operator!= (const TAO_Cache_IntId &rhs) const;
+ bool operator!= (const TAO_Cache_IntId &rhs) const;
/// Return the underlying transport
TAO_Transport *transport (void);
@@ -129,10 +129,10 @@ public:
TAO_Cache_ExtId& operator= (const TAO_Cache_ExtId &rhs);
/// Equality comparison operator (must match both id_ and kind_).
- int operator== (const TAO_Cache_ExtId &rhs) const;
+ bool operator== (const TAO_Cache_ExtId &rhs) const;
/// Inequality comparison operator.
- int operator!= (const TAO_Cache_ExtId &rhs) const;
+ bool operator!= (const TAO_Cache_ExtId &rhs) const;
/// <hash> function is required in order for this class to be usable by
/// ACE_Hash_Map_Manager_Ex.