summaryrefslogtreecommitdiff
path: root/TAO/tao/append.cpp
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1998-06-25 13:53:04 +0000
committergokhale <asgokhale@users.noreply.github.com>1998-06-25 13:53:04 +0000
commit1e492d37291e6ee4912c6c23f02a07785311b8e6 (patch)
treebe802122fce6965bc2c217553f4eac1e5cf061f2 /TAO/tao/append.cpp
parent5fed6e0b8d156b8f87ef8489e241ffb32e66e865 (diff)
downloadATCD-1e492d37291e6ee4912c6c23f02a07785311b8e6.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/append.cpp')
-rw-r--r--TAO/tao/append.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/TAO/tao/append.cpp b/TAO/tao/append.cpp
index 2eeb0d629f3..a86d81a6eba 100644
--- a/TAO/tao/append.cpp
+++ b/TAO/tao/append.cpp
@@ -345,9 +345,6 @@ TAO_Marshal_Union::append (CORBA::TypeCode_ptr tc,
CORBA::TypeCode_ptr default_tc = 0;
CORBA::Boolean discrim_matched = CORBA::B_FALSE;
- TAO_Base_Union *base_union = (TAO_Base_Union *)src;
- void *member_val;
-
// get the discriminator type
discrim_tc = tc->discriminator_type (env);
@@ -462,7 +459,6 @@ TAO_Marshal_Union::append (CORBA::TypeCode_ptr tc,
default_tc = member_tc;
if (discrim_matched)
{
- member_val = base_union->_access (0);
// marshal according to the matched typecode
return dest->append (member_tc, src,
env);
@@ -483,7 +479,6 @@ TAO_Marshal_Union::append (CORBA::TypeCode_ptr tc,
// we are here only if there was no match
if (default_tc)
{
- member_val = base_union->_access (0);
return dest->append (default_tc, src, env);
}
else