summaryrefslogtreecommitdiff
path: root/tests/Message_Block_Test.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-21 18:16:34 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-21 18:16:34 +0000
commit1ddbf5fc9584f62d93fe292a9c73a32afb91dbf9 (patch)
treed88946e6398f5b11f840fa3f32ed92ffc6f57f89 /tests/Message_Block_Test.cpp
parentad59c2bbc72128bb99e8c881085337ac7139d893 (diff)
downloadATCD-1ddbf5fc9584f62d93fe292a9c73a32afb91dbf9.tar.gz
use macros instead of hard-coding types in the template specializations
Diffstat (limited to 'tests/Message_Block_Test.cpp')
-rw-r--r--tests/Message_Block_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Message_Block_Test.cpp b/tests/Message_Block_Test.cpp
index 606be83b61b..3042e91dc51 100644
--- a/tests/Message_Block_Test.cpp
+++ b/tests/Message_Block_Test.cpp
@@ -260,7 +260,7 @@ main (int, char *[])
#if defined (ACE_TEMPLATES_REQUIRE_SPECIALIZATION)
template class ACE_Lock_Adapter<ACE_Thread_Mutex>;
-template class ACE_Message_Queue<ACE_Null_Mutex, ACE_Null_Condition_Mutex>;
-template class ACE_Message_Queue_Iterator<ACE_Null_Mutex, ACE_Null_Condition_Mutex>;
-template class ACE_Message_Queue_Reverse_Iterator<ACE_Null_Mutex, ACE_Null_Condition_Mutex>;
+template class ACE_Message_Queue<ACE_NULL_SYNCH>;
+template class ACE_Message_Queue_Iterator<ACE_NULL_SYNCH>;
+template class ACE_Message_Queue_Reverse_Iterator<ACE_NULL_SYNCH>;
#endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */