diff options
author | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-23 14:06:37 +0000 |
---|---|---|
committer | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-23 14:06:37 +0000 |
commit | 2a58065e41f0cee6169aed5eddce9b5c52962e63 (patch) | |
tree | 2f2f28af464a737f6dc5ee2a72d346c143e45fc5 /TAO/tao/Cache_Entries.inl | |
parent | 05ab5ce28ae110eefc7453e8fa7807ebeef9ed32 (diff) | |
download | ATCD-2a58065e41f0cee6169aed5eddce9b5c52962e63.tar.gz |
ChangeLogTag: Wed May 23 09:04:35 2001 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tao/Cache_Entries.inl')
-rw-r--r-- | TAO/tao/Cache_Entries.inl | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/TAO/tao/Cache_Entries.inl b/TAO/tao/Cache_Entries.inl index 2ff9c520e1f..1e6bbc118fb 100644 --- a/TAO/tao/Cache_Entries.inl +++ b/TAO/tao/Cache_Entries.inl @@ -4,16 +4,14 @@ ACE_INLINE TAO_Cache_IntId::TAO_Cache_IntId (void) : transport_ (0), - recycle_state_ (ACE_RECYCLABLE_UNKNOWN), - purging_order_ (0) + recycle_state_ (ACE_RECYCLABLE_UNKNOWN) { } ACE_INLINE TAO_Cache_IntId::TAO_Cache_IntId (const TAO_Cache_IntId &rhs) : transport_ (0), - recycle_state_ (ACE_RECYCLABLE_UNKNOWN), - purging_order_ (0) + recycle_state_ (ACE_RECYCLABLE_UNKNOWN) { *this = rhs; } @@ -63,18 +61,6 @@ TAO_Cache_IntId::relinquish_transport (void) return val; } -ACE_INLINE unsigned long -TAO_Cache_IntId::purging_order (void) const -{ - return this->purging_order_; -} - -ACE_INLINE void -TAO_Cache_IntId::purging_order (unsigned long value) -{ - this->purging_order_ = value; -} - /*******************************************************/ ACE_INLINE TAO_Cache_ExtId::TAO_Cache_ExtId (void) |