diff options
author | jp4 <jp4@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-06 22:18:16 +0000 |
---|---|---|
committer | jp4 <jp4@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-06 22:18:16 +0000 |
commit | 4ccc64f10115fb2408a563cfdba65b5bfde1f64d (patch) | |
tree | 9355e47157417476b5bcccc3558ed760a58205cd /TAO/tao/DynUnion_i.cpp | |
parent | 1f1c2f372b9cda158dbe3777c618cac809b02e49 (diff) | |
download | ATCD-4ccc64f10115fb2408a563cfdba65b5bfde1f64d.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao/DynUnion_i.cpp')
-rw-r--r-- | TAO/tao/DynUnion_i.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/TAO/tao/DynUnion_i.cpp b/TAO/tao/DynUnion_i.cpp index 206bc6011e9..30ff2106803 100644 --- a/TAO/tao/DynUnion_i.cpp +++ b/TAO/tao/DynUnion_i.cpp @@ -1409,7 +1409,12 @@ template class DU_Extractor<CORBA::UShort>; template class DU_Extractor<CORBA::ULong>; template class DU_Extractor<CORBA::Boolean>; template class DU_Extractor<CORBA::Char>; + +// For Chorus and VxWorks +#if !defined (ACE_LACKS_LONGLONG_T) template class DU_Extractor<CORBA::LongLong>; +#endif /* ACE_LACKS_LONGLONG_T */ + template class DU_Extractor<CORBA::ULongLong>; #elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) #pragma instantiate DU_Extractor<CORBA::Short> @@ -1418,7 +1423,12 @@ template class DU_Extractor<CORBA::ULongLong>; #pragma instantiate DU_Extractor<CORBA::ULong> #pragma instantiate DU_Extractor<CORBA::Boolean> #pragma instantiate DU_Extractor<CORBA::Char> + +// For Chorus and VxWorks +#if !defined (ACE_LACKS_LONGLONG_T) #pragma instantiate DU_Extractor<CORBA::LongLong> +#endif /* ACE_LACKS_LONGLONG_T */ + #pragma instantiate DU_Extractor<CORBA::ULongLong> #endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */ |