summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-22 20:58:52 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-22 20:58:52 +0000
commit061b0abf2bbcf9e73af2d0bd9c9538ca12823a5c (patch)
treeebc9f2aba21ac325e0f28b8223d821b45f41de4d
parent293e92584f504ebc810e4f88037cff2d82b77155 (diff)
downloadATCD-061b0abf2bbcf9e73af2d0bd9c9538ca12823a5c.tar.gz
Moved template instantiations around.
-rw-r--r--TAO/orbsvcs/Event_Service/GPlot_File.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/Event_Service/GPlot_File.cpp b/TAO/orbsvcs/Event_Service/GPlot_File.cpp
index 6967cc932fe..587d97728f5 100644
--- a/TAO/orbsvcs/Event_Service/GPlot_File.cpp
+++ b/TAO/orbsvcs/Event_Service/GPlot_File.cpp
@@ -165,15 +165,15 @@ ACE_GPlot_File::set (long entry, float value)
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
+template class ACE_Map_Entry<long, char *>;
template class ACE_Map_Manager<long, char *, ACE_Null_Mutex>;
template class ACE_Map_Iterator_Base<long, char *, ACE_Null_Mutex>;
template class ACE_Map_Iterator<long, char *, ACE_Null_Mutex>;
template class ACE_Map_Reverse_Iterator<long, char *, ACE_Null_Mutex>;
-template class ACE_Map_Entry<long, char *>;
#elif defined(ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
+#pragma instantiate ACE_Map_Entry<long, char *>
#pragma instantiate ACE_Map_Manager<long, char *, ACE_Null_Mutex>
#pragma instantiate ACE_Map_Iterator_Base<long, char *, ACE_Null_Mutex>
#pragma instantiate ACE_Map_Iterator<long, char *, ACE_Null_Mutex>
#pragma instantiate ACE_Map_Reverse_Iterator<long, char *, ACE_Null_Mutex>
-#pragma instantiate ACE_Map_Entry<long, char *>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */