summaryrefslogtreecommitdiff
path: root/TAO/tao/BD_String_Argument_T.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 11:09:31 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 11:09:31 +0000
commitc317b8d1dc07a099cf12cc0f2a9eb8007f2ce7da (patch)
tree5c56f3decb216ca7e8bc4020dbacbae6bcb2aacb /TAO/tao/BD_String_Argument_T.cpp
parent2ad142e6ce40c15f08279a6547e9d780b721c41b (diff)
downloadATCD-c317b8d1dc07a099cf12cc0f2a9eb8007f2ce7da.tar.gz
ChangeLogTag: Tue Jun 20 10:21:04 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/BD_String_Argument_T.cpp')
-rw-r--r--TAO/tao/BD_String_Argument_T.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/BD_String_Argument_T.cpp b/TAO/tao/BD_String_Argument_T.cpp
index de85c7171c7..3b0abc54698 100644
--- a/TAO/tao/BD_String_Argument_T.cpp
+++ b/TAO/tao/BD_String_Argument_T.cpp
@@ -49,7 +49,7 @@ TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::marshal (
TAO_OutputCDR & cdr
)
{
- return cdr << typename S_var::s_traits::from_type (this->x_, BOUND);
+ return cdr << S_var::s_traits::from_type (this->x_, BOUND);
}
template<typename S_var,
@@ -61,7 +61,7 @@ TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
)
{
delete [] this->x_;
- return cdr >> typename S_var::s_traits::to_type (this->x_, BOUND);
+ return cdr >> S_var::s_traits::to_type (this->x_, BOUND);
}
#if TAO_HAS_INTERCEPTORS == 1
@@ -75,7 +75,7 @@ TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
{
Insert_Policy<typename S_var::s_traits::from_type>::any_insert (
any,
- typename S_var::s_traits::from_type (this->x_, BOUND)
+ S_var::s_traits::from_type (this->x_, BOUND)
);
}
@@ -91,7 +91,7 @@ TAO::Out_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
TAO_InputCDR & cdr
)
{
- return cdr >> typename S_var::s_traits::to_type (this->x_, BOUND);
+ return cdr >> S_var::s_traits::to_type (this->x_, BOUND);
}
#if TAO_HAS_INTERCEPTORS == 1
@@ -105,7 +105,7 @@ TAO::Out_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
{
Insert_Policy<typename S_var::s_traits::from_type>::any_insert (
any,
- typename S_var::s_traits::from_type (this->x_, BOUND)
+ S_var::s_traits::from_type (this->x_, BOUND)
);
}