diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-03-08 12:09:57 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-03-08 12:09:57 +0000 |
commit | b2474d36b2fba266e39a550f8bfcd0fd2d8a05ef (patch) | |
tree | f8aaf10dddee6097a150044018ca0878c3904ac7 /TAO | |
parent | fe76b78e672560b38ec739d23a852b63d6e24561 (diff) | |
download | ATCD-b2474d36b2fba266e39a550f8bfcd0fd2d8a05ef.tar.gz |
ChangeLogTag: Wed Mar 8 11:39:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/tao/Object.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/Object.cpp b/TAO/tao/Object.cpp index a0bb1349f92..6be91ecde06 100644 --- a/TAO/tao/Object.cpp +++ b/TAO/tao/Object.cpp @@ -47,8 +47,8 @@ CORBA::Object::Object (TAO_Stub * protocol_proxy, CORBA::Boolean collocated, TAO_Abstract_ServantBase * servant, TAO_ORB_Core *orb_core) - : is_local_ (0) - , is_evaluated_ (1) + : is_local_ (false) + , is_evaluated_ (true) , ior_ (0) , orb_core_ (orb_core) , protocol_proxy_ (protocol_proxy) @@ -76,8 +76,8 @@ CORBA::Object::Object (TAO_Stub * protocol_proxy, CORBA::Object::Object (IOP::IOR *ior, TAO_ORB_Core *orb_core) - : is_local_ (0) - , is_evaluated_ (0) + : is_local_ (false) + , is_evaluated_ (false) , ior_ (ior) , orb_core_ (orb_core) , protocol_proxy_ (0) @@ -851,7 +851,7 @@ CORBA::Object::tao_object_initialize (CORBA::Object *obj) obj->protocol_proxy_ = objdata; - obj->is_evaluated_ = 1; + obj->is_evaluated_ = true; // Release the contents of the ior to keep memory consumption down. obj->ior_ = 0; |