summaryrefslogtreecommitdiff
path: root/TAO/tao/Cache_Entries.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Cache_Entries.inl')
-rw-r--r--TAO/tao/Cache_Entries.inl6
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/tao/Cache_Entries.inl b/TAO/tao/Cache_Entries.inl
index 41d04e882aa..779fa355bef 100644
--- a/TAO/tao/Cache_Entries.inl
+++ b/TAO/tao/Cache_Entries.inl
@@ -9,14 +9,16 @@ namespace TAO
ACE_INLINE
Cache_IntId::Cache_IntId (void)
: transport_ (0),
- recycle_state_ (ENTRY_UNKNOWN)
+ recycle_state_ (ENTRY_UNKNOWN),
+ is_connected_ (false)
{
}
ACE_INLINE
Cache_IntId::Cache_IntId (const Cache_IntId &rhs)
: transport_ (0),
- recycle_state_ (ENTRY_UNKNOWN)
+ recycle_state_ (ENTRY_UNKNOWN),
+ is_connected_ (false)
{
*this = rhs;
}