diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-21 17:56:47 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-21 17:56:47 +0000 |
commit | 729baa980dcd15c5deb5bce14a5c3b9e2fe6f57b (patch) | |
tree | e111f9818952524584477ccbf80cab4f0a762248 /tests/Reader_Writer_Test.cpp | |
parent | 8996fc2724ae5e708ddb9b99ad950ef67c3789a6 (diff) | |
download | ATCD-729baa980dcd15c5deb5bce14a5c3b9e2fe6f57b.tar.gz |
added template specializations
Diffstat (limited to 'tests/Reader_Writer_Test.cpp')
-rw-r--r-- | tests/Reader_Writer_Test.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/Reader_Writer_Test.cpp b/tests/Reader_Writer_Test.cpp index 74c2a154c24..8d49e9db9ec 100644 --- a/tests/Reader_Writer_Test.cpp +++ b/tests/Reader_Writer_Test.cpp @@ -179,3 +179,8 @@ int main (int, char *[]) return 0; } +#if defined (ACE_TEMPLATES_REQUIRE_SPECIALIZATION) +template class ACE_Read_Guard<ACE_RW_Mutex>; +template class ACE_Write_Guard<ACE_RW_Mutex>; +template class ACE_Guard<ACE_RW_Mutex>; +#endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */ |