diff options
author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-02 20:39:12 +0000 |
---|---|---|
committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-02 20:39:12 +0000 |
commit | 81d71e103e7c1e1eab7e7d501fa5ab1494791c0b (patch) | |
tree | f32b4b83d2b58d1e592f45fbce5daa7baa5b97e9 /tests | |
parent | 12e633497d9c18755837b84b7ebc74a350f9b51f (diff) | |
download | ATCD-81d71e103e7c1e1eab7e7d501fa5ab1494791c0b.tar.gz |
added ACE_DNode<int> explicit template instantiation
Diffstat (limited to 'tests')
-rw-r--r-- | tests/OrdMultiSet_Test.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/OrdMultiSet_Test.cpp b/tests/OrdMultiSet_Test.cpp index ccd9ab6fda5..91d6d878ff5 100644 --- a/tests/OrdMultiSet_Test.cpp +++ b/tests/OrdMultiSet_Test.cpp @@ -204,10 +204,12 @@ main (int, char *[]) template class ACE_Ordered_MultiSet<int>; template class ACE_Ordered_MultiSet_Iterator<int>; +template class ACE_DNode<int>; #elif defined(ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) #pragma instantiate ACE_Ordered_MultiSet<int> #pragma instantiate ACE_Ordered_MultiSet_Iterator<int> +#pragma instantiate ACE_DNode<int> -#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
\ No newline at end of file +#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */ |