summaryrefslogtreecommitdiff
path: root/examples/APG/Containers/Hash_Map.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-20 10:20:34 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-20 10:20:34 +0000
commit81f43faf7412dc4e0b8e2f6de1cba1e6241da038 (patch)
treef3439f1f42c9f720cbc58cee71828a2566bd1b7a /examples/APG/Containers/Hash_Map.cpp
parentc38597e9677c14da4cebd6af660113ded5fb093d (diff)
downloadATCD-81f43faf7412dc4e0b8e2f6de1cba1e6241da038.tar.gz
ChangeLogTag: Thu Apr 20 09:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'examples/APG/Containers/Hash_Map.cpp')
-rw-r--r--examples/APG/Containers/Hash_Map.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/APG/Containers/Hash_Map.cpp b/examples/APG/Containers/Hash_Map.cpp
index a81dbd47061..1b2d4ee4634 100644
--- a/examples/APG/Containers/Hash_Map.cpp
+++ b/examples/APG/Containers/Hash_Map.cpp
@@ -116,19 +116,3 @@ int ACE_TMAIN (int, ACE_TCHAR *[])
return me.run ();
}
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class Hash_Map <int, DataElement>
-;
-template class ACE_Hash_Map_Manager_Ex<int, DataElement, ACE_Hash<int>, ACE_Equal_To<int>, ACE_Null_Mutex>
-;
-template class ACE_Hash_Map_Entry<int, DataElement>
-;
-template class ACE_Hash_Map_Iterator_Base_Ex<int, DataElement, ACE_Hash<int>, ACE_Equal_To<int>, ACE_Null_Mutex>
-;
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate Hash_Map <int, DataElement*>
-#pragma instantiate ACE_Hash_Map_Manager_Ex<int, DataElement, ACE_Hash<int>, ACE_Equal_To<int>, ACE_Null_Mutex>;
-#pragma instantiate ACE_Hash_Map_Entry<int, DataElement>;
-#pragma instantiate ACE_Hash_Map_Iterator_Base_Ex<int, DataElement, ACE_Hash<int>, ACE_Equal_To<int>, ACE_Null_Mutex>;
-#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION*/
-