summaryrefslogtreecommitdiff
path: root/tests/Handle_Set_Test.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-28 01:46:41 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-28 01:46:41 +0000
commit7506e2067fffd356b63b7af79a6b84a3453cf5ed (patch)
tree3e93d3dd4c8dcbd011676ba58d2921ed321d8a79 /tests/Handle_Set_Test.cpp
parentdf4234dcd1ca913294b75c6d1bb67a3a2ebd5bcc (diff)
downloadATCD-7506e2067fffd356b63b7af79a6b84a3453cf5ed.tar.gz
Instantiate templates with ACE_HANDLE instead of int.
Diffstat (limited to 'tests/Handle_Set_Test.cpp')
-rw-r--r--tests/Handle_Set_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Handle_Set_Test.cpp b/tests/Handle_Set_Test.cpp
index a72aaaf9dbd..2b76dc0f8c4 100644
--- a/tests/Handle_Set_Test.cpp
+++ b/tests/Handle_Set_Test.cpp
@@ -179,7 +179,7 @@ main (int argc, char *argv[])
}
#if defined (ACE_TEMPLATES_REQUIRE_SPECIALIZATION)
-template class ACE_Unbounded_Queue<int>;
-template class ACE_Unbounded_Queue_Iterator<int>;
-template class ACE_Node<int>;
+template class ACE_Unbounded_Queue<ACE_HANDLE>;
+template class ACE_Unbounded_Queue_Iterator<ACE_HANDLE>;
+template class ACE_Node<ACE_HANDLE>;
#endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */