summaryrefslogtreecommitdiff
path: root/TAO/tao/Cache_Entries.cpp
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 14:06:37 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 14:06:37 +0000
commit2a58065e41f0cee6169aed5eddce9b5c52962e63 (patch)
tree2f2f28af464a737f6dc5ee2a72d346c143e45fc5 /TAO/tao/Cache_Entries.cpp
parent05ab5ce28ae110eefc7453e8fa7807ebeef9ed32 (diff)
downloadATCD-2a58065e41f0cee6169aed5eddce9b5c52962e63.tar.gz
ChangeLogTag: Wed May 23 09:04:35 2001 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tao/Cache_Entries.cpp')
-rw-r--r--TAO/tao/Cache_Entries.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/TAO/tao/Cache_Entries.cpp b/TAO/tao/Cache_Entries.cpp
index f58a7dc2bca..9c7e17f0273 100644
--- a/TAO/tao/Cache_Entries.cpp
+++ b/TAO/tao/Cache_Entries.cpp
@@ -12,8 +12,7 @@ ACE_RCSID(tao, Cache_Entries, "$Id$")
TAO_Cache_IntId::TAO_Cache_IntId (TAO_Transport *transport)
: transport_ (TAO_Transport::_duplicate (transport)),
- recycle_state_ (ACE_RECYCLABLE_UNKNOWN),
- purging_order_ (0)
+ recycle_state_ (ACE_RECYCLABLE_UNKNOWN)
{
}
@@ -27,7 +26,6 @@ TAO_Cache_IntId::operator= (const TAO_Cache_IntId &rhs)
{
if (this != &rhs) {
this->recycle_state_ = rhs.recycle_state_;
- this->purging_order_ = rhs.purging_order_;
TAO_Transport* old_transport = this->transport_;
this->transport_ = TAO_Transport::_duplicate (rhs.transport_);