diff options
Diffstat (limited to 'TAO/tao/Basic_Arguments.h')
-rw-r--r-- | TAO/tao/Basic_Arguments.h | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/TAO/tao/Basic_Arguments.h b/TAO/tao/Basic_Arguments.h index 4011e41039c..cf73bb0da43 100644 --- a/TAO/tao/Basic_Arguments.h +++ b/TAO/tao/Basic_Arguments.h @@ -52,57 +52,64 @@ namespace TAO template<> class TAO_Export Arg_Traits<CORBA::Short> - : public Basic_Arg_Traits_T<CORBA::Short, TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::Short> > + : public Basic_Arg_Traits_T<CORBA::Short, + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::Long> - : public Basic_Arg_Traits_T<CORBA::Long, TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::Long> > + : public Basic_Arg_Traits_T<CORBA::Long, + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::UShort> - : public Basic_Arg_Traits_T<CORBA::UShort, TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::UShort> > + : public Basic_Arg_Traits_T<CORBA::UShort, + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::ULong> - : public Basic_Arg_Traits_T<CORBA::ULong, TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::ULong> > + : public Basic_Arg_Traits_T<CORBA::ULong, + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::Float> - : public Basic_Arg_Traits_T<CORBA::Float, TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::Float> > + : public Basic_Arg_Traits_T<CORBA::Float, + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::Double> - : public Basic_Arg_Traits_T<CORBA::Double, TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::Double> > + : public Basic_Arg_Traits_T<CORBA::Double, + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::LongLong> - : public Basic_Arg_Traits_T<CORBA::LongLong, TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::LongLong> > + : public Basic_Arg_Traits_T<CORBA::LongLong, + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::ULongLong> : public Basic_Arg_Traits_T<CORBA::ULongLong, - TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::ULongLong> > + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; template<> class TAO_Export Arg_Traits<CORBA::LongDouble> : public Basic_Arg_Traits_T<CORBA::LongDouble, - TAO::Any_Insert_Policy_AnyTypeCode_Adapter <CORBA::LongDouble> > + TAO::Any_Insert_Policy_AnyTypeCode_Adapter> { }; } |