summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 12:50:46 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 12:50:46 +0000
commitb4aef0f43efd431f99251c1745064971b1aabfaf (patch)
treea3ecdee835e03c06e24a2d1e9075b7ebc0ae4735 /TAO/tao
parent3eb6b86b413ac0933a85632bb2c9ee6d84f1ea9d (diff)
downloadATCD-b4aef0f43efd431f99251c1745064971b1aabfaf.tar.gz
ChangeLogTag: Tue Jun 20 10:21:04 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/PortableServer/BD_String_SArgument_T.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/PortableServer/BD_String_SArgument_T.cpp b/TAO/tao/PortableServer/BD_String_SArgument_T.cpp
index 4a9b0d04256..9e759b89529 100644
--- a/TAO/tao/PortableServer/BD_String_SArgument_T.cpp
+++ b/TAO/tao/PortableServer/BD_String_SArgument_T.cpp
@@ -49,7 +49,7 @@ TAO::Inout_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::marshal (
TAO_OutputCDR & cdr
)
{
- return cdr << typename S_var::s_traits::from_type (this->x_.in (), BOUND);
+ return cdr << S_var::s_traits::from_type (this->x_.in (), BOUND);
}
template<typename S_var,
@@ -60,7 +60,7 @@ TAO::Inout_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::demarshal (
TAO_InputCDR & cdr
)
{
- return cdr >> typename S_var::s_traits::to_type (this->x_.out (), BOUND);
+ return cdr >> S_var::s_traits::to_type (this->x_.out (), BOUND);
}
#if TAO_HAS_INTERCEPTORS == 1
@@ -74,7 +74,7 @@ interceptor_value (CORBA::Any *any) const
{
Insert_Policy<typename S_var::s_traits::from_type>::any_insert (
any,
- from_S (this->x_.in (), BOUND)
+ S_var::s_traits::from_type (this->x_.in (), BOUND)
);
}
@@ -90,7 +90,7 @@ TAO::Out_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::marshal (
TAO_OutputCDR &cdr
)
{
- return cdr << typename S_var::s_traits::from_type (this->x_.in (), BOUND);
+ return cdr << S_var::s_traits::from_type (this->x_.in (), BOUND);
}
#if TAO_HAS_INTERCEPTORS == 1
@@ -104,7 +104,7 @@ interceptor_value (CORBA::Any *any) const
{
Insert_Policy<typename S_var::s_traits::from_type>::any_insert (
any,
- from_S (this->x_.in (), BOUND)
+ S_var::s_traits::from_type (this->x_.in (), BOUND)
);
}