diff options
Diffstat (limited to 'tests/Future_Test.cpp')
-rw-r--r-- | tests/Future_Test.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/Future_Test.cpp b/tests/Future_Test.cpp index 4f8663a437b..6bededf0c32 100644 --- a/tests/Future_Test.cpp +++ b/tests/Future_Test.cpp @@ -297,10 +297,12 @@ static int n_loops = 100; #if defined (ACE_TEMPLATES_REQUIRE_SPECIALIZATION) template class ACE_Future<const char *>; +template class ACE_Future<int>; template class ACE_Future<u_long>; -template class auto_ptr<ACE_Method_Object>; template class ACE_Future_Rep<char const *>; -template class ACE_Future_Rep<unsigned long>; +template class ACE_Future_Rep<int>; +template class ACE_Future_Rep<u_long>; +template class auto_ptr<ACE_Method_Object>; #endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */ #endif /* ACE_HAS_THREADS */ |