summaryrefslogtreecommitdiff
path: root/TAO/tao/BD_String_Argument_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/BD_String_Argument_T.cpp')
-rw-r--r--TAO/tao/BD_String_Argument_T.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/tao/BD_String_Argument_T.cpp b/TAO/tao/BD_String_Argument_T.cpp
index 3b0abc54698..ed907aa0681 100644
--- a/TAO/tao/BD_String_Argument_T.cpp
+++ b/TAO/tao/BD_String_Argument_T.cpp
@@ -19,7 +19,8 @@ TAO::In_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::marshal (
TAO_OutputCDR & cdr
)
{
- return cdr << S_var::s_traits::from_type (this->x_, BOUND);
+ typedef typename S_var::s_traits::from_type from_type;
+ return cdr << from_type (this->x_, BOUND);
}
#if TAO_HAS_INTERCEPTORS == 1