summaryrefslogtreecommitdiff
path: root/TAO/tao/Cache_Entries.cpp
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-18 19:27:05 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-18 19:27:05 +0000
commit0661dd27de83c0eea45fe67c3a7cd668362d53d4 (patch)
tree141dfe6e8587b0adf7cb25ebc8b330222b3048cc /TAO/tao/Cache_Entries.cpp
parent8d3d2962261c5d593e40ee773564ded7bed60a52 (diff)
downloadATCD-0661dd27de83c0eea45fe67c3a7cd668362d53d4.tar.gz
ChangeLogTag: Fri May 18 14:23:22 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, 3 insertions, 1 deletions
diff --git a/TAO/tao/Cache_Entries.cpp b/TAO/tao/Cache_Entries.cpp
index 9c7e17f0273..f58a7dc2bca 100644
--- a/TAO/tao/Cache_Entries.cpp
+++ b/TAO/tao/Cache_Entries.cpp
@@ -12,7 +12,8 @@ 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)
+ recycle_state_ (ACE_RECYCLABLE_UNKNOWN),
+ purging_order_ (0)
{
}
@@ -26,6 +27,7 @@ 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_);