diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-23 06:19:12 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-23 06:19:12 +0000 |
commit | 0846a01f27286496e0719ccf9dc08fc50e36e61f (patch) | |
tree | ce77feb2f063a118db101d355260890eb6f92ad4 /TAO/tao/Cache_Entries.h | |
parent | ec15bf46a6233e32ded2780645d8281241856ecc (diff) | |
download | ATCD-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.h | 8 |
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. |