summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-03-24 08:30:53 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-03-24 08:30:53 +0000
commitafc40b8131c10ce841c678ef456fcccc2c35bb5b (patch)
treed5fea94faf932f6ede923abec7ec81ffdd05f663
parent793b7229e02eea724dbf6ba577ad4d75c0f291f4 (diff)
downloadATCD-afc40b8131c10ce841c678ef456fcccc2c35bb5b.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/Alias_TypeCode.cpp2
-rw-r--r--TAO/tao/Enum_TypeCode.cpp2
-rw-r--r--TAO/tao/Sequence_TypeCode.cpp2
-rw-r--r--TAO/tao/Sequence_TypeCode.h4
-rw-r--r--TAO/tao/Struct_TypeCode.cpp2
-rw-r--r--TAO/tao/Union_TypeCode.cpp2
-rw-r--r--TAO/tao/Value_Box_TypeCode.cpp2
-rw-r--r--TAO/tao/Value_TypeCode.cpp2
8 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tao/Alias_TypeCode.cpp b/TAO/tao/Alias_TypeCode.cpp
index 1c0d9aa9ed1..9e5ce9ad484 100644
--- a/TAO/tao/Alias_TypeCode.cpp
+++ b/TAO/tao/Alias_TypeCode.cpp
@@ -29,7 +29,7 @@ TAO::TypeCode::Alias<StringType, RefCountPolicy>::tao_marshal (
// Create a CDR encapsulation.
return
- (cdr << TAO_ENCAP_BYTE_ORDER)
+ (cdr << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER))
&& (cdr << this->attributes_.id ())
&& (cdr << this->attributes_.name ())
&& (cdr << *(this->content_type_.in ()));
diff --git a/TAO/tao/Enum_TypeCode.cpp b/TAO/tao/Enum_TypeCode.cpp
index 3874f22ec50..976e39a28dd 100644
--- a/TAO/tao/Enum_TypeCode.cpp
+++ b/TAO/tao/Enum_TypeCode.cpp
@@ -25,7 +25,7 @@ TAO::TypeCode::Enum<StringType,
// Create a CDR encapsulation.
bool const success =
- (cdr << TAO_ENCAP_BYTE_ORDER)
+ (cdr << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER))
&& (cdr << this->base_attributes_.id ())
&& (cdr << this->base_attributes_.name ())
&& (cdr << this->nenumerators_);
diff --git a/TAO/tao/Sequence_TypeCode.cpp b/TAO/tao/Sequence_TypeCode.cpp
index e860015e935..93362f34243 100644
--- a/TAO/tao/Sequence_TypeCode.cpp
+++ b/TAO/tao/Sequence_TypeCode.cpp
@@ -28,7 +28,7 @@ TAO::TypeCode::Sequence<RefCountPolicy>::tao_marshal (
// Create a CDR encapsulation.
return
- (cdr << TAO_ENCAP_BYTE_ORDER)
+ (cdr << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER))
&& (cdr << *(this->content_type_))
&& (cdr << this->length_);
}
diff --git a/TAO/tao/Sequence_TypeCode.h b/TAO/tao/Sequence_TypeCode.h
index 7d39dc115a5..ca8da2e7094 100644
--- a/TAO/tao/Sequence_TypeCode.h
+++ b/TAO/tao/Sequence_TypeCode.h
@@ -45,8 +45,8 @@ namespace TAO
/// Constructor.
Sequence (CORBA::TCKind kind,
- CORBA::ULong length,
- CORBA::TypeCode_ptr * tc);
+ CORBA::ULong length,
+ CORBA::TypeCode_ptr * tc);
/// Destructor.
~Sequence (void);
diff --git a/TAO/tao/Struct_TypeCode.cpp b/TAO/tao/Struct_TypeCode.cpp
index 4ea7b15b145..5008b0abc69 100644
--- a/TAO/tao/Struct_TypeCode.cpp
+++ b/TAO/tao/Struct_TypeCode.cpp
@@ -33,7 +33,7 @@ TAO::TypeCode::Struct<StringType,
// Create a CDR encapsulation.
bool const success =
- (cdr << TAO_ENCAP_BYTE_ORDER)
+ (cdr << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER))
&& (cdr << this->base_attributes_.id ())
&& (cdr << this->base_attributes_.name ())
&& (cdr << this->nfields_);
diff --git a/TAO/tao/Union_TypeCode.cpp b/TAO/tao/Union_TypeCode.cpp
index 0b51ab2a22c..53bf163312d 100644
--- a/TAO/tao/Union_TypeCode.cpp
+++ b/TAO/tao/Union_TypeCode.cpp
@@ -27,7 +27,7 @@ TAO::TypeCode::Union<StringType,
// Create a CDR encapsulation.
bool const success =
- (cdr << TAO_ENCAP_BYTE_ORDER)
+ (cdr << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER))
&& (cdr << this->base_attributes_.id ())
&& (cdr << this->base_attributes_.name ())
&& (cdr << *(this->discriminant_type_))
diff --git a/TAO/tao/Value_Box_TypeCode.cpp b/TAO/tao/Value_Box_TypeCode.cpp
index abd65769edd..bd579b9a693 100644
--- a/TAO/tao/Value_Box_TypeCode.cpp
+++ b/TAO/tao/Value_Box_TypeCode.cpp
@@ -29,7 +29,7 @@ TAO::TypeCode::Value_Box<StringType, RefCountPolicy>::tao_marshal (
// Create a CDR encapsulation.
return
- (cdr << TAO_ENCAP_BYTE_ORDER)
+ (cdr << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER))
&& (cdr << this->attributes_.id ())
&& (cdr << this->attributes_.name ())
&& (cdr << *(this->content_type_.in ()));
diff --git a/TAO/tao/Value_TypeCode.cpp b/TAO/tao/Value_TypeCode.cpp
index 8958430d31a..a7c331b9ee5 100644
--- a/TAO/tao/Value_TypeCode.cpp
+++ b/TAO/tao/Value_TypeCode.cpp
@@ -29,7 +29,7 @@ TAO::TypeCode::Value<StringType,
// Create a CDR encapsulation.
bool const success =
- (cdr << TAO_ENCAP_BYTE_ORDER)
+ (cdr << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER))
&& (cdr << this->base_attributes_.id ())
&& (cdr << this->base_attributes_.name ())
&& (cdr << this->type_modifier_)