summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-03-05 10:50:53 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-03-05 10:50:53 +0000
commit99e7afe5975fdaffb8b3daf9c5282699d305f173 (patch)
treed6a2670db75c0c3b21689671ff310803181bd997
parenta403822d5a79c912954d020e670154d4a32eaa08 (diff)
downloadATCD-99e7afe5975fdaffb8b3daf9c5282699d305f173.tar.gz
-rw-r--r--TAO/tao/Bounded_Sequence_CDR_T.h2
-rw-r--r--TAO/tao/Unbounded_Sequence_CDR_T.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Bounded_Sequence_CDR_T.h b/TAO/tao/Bounded_Sequence_CDR_T.h
index 379410b5a22..531e9b77177 100644
--- a/TAO/tao/Bounded_Sequence_CDR_T.h
+++ b/TAO/tao/Bounded_Sequence_CDR_T.h
@@ -476,7 +476,7 @@ namespace TAO {
return false;
}
for(CORBA::ULong i = 0; i < length; ++i) {
- if (!TAO::Objref_Traits<object_type>::marshal (source[i], strm)) {
+ if (!TAO::Objref_Traits<object_type>::marshal (source[i].in (), strm)) {
return false;
}
}
diff --git a/TAO/tao/Unbounded_Sequence_CDR_T.h b/TAO/tao/Unbounded_Sequence_CDR_T.h
index ee925f249b9..b4793d3a43d 100644
--- a/TAO/tao/Unbounded_Sequence_CDR_T.h
+++ b/TAO/tao/Unbounded_Sequence_CDR_T.h
@@ -526,7 +526,7 @@ namespace TAO {
return false;
}
for(CORBA::ULong i = 0; i < length; ++i) {
- if (!TAO::Objref_Traits<objec_t>::marshal (source[i], strm)) {
+ if (!TAO::Objref_Traits<objec_t>::marshal (source[i].in (), strm)) {
return false;
}
}