summaryrefslogtreecommitdiff
path: root/ace/Container_Instantiations.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Container_Instantiations.cpp')
-rw-r--r--ace/Container_Instantiations.cpp15
1 files changed, 3 insertions, 12 deletions
diff --git a/ace/Container_Instantiations.cpp b/ace/Container_Instantiations.cpp
index 031a262808d..9b45dacf6e4 100644
--- a/ace/Container_Instantiations.cpp
+++ b/ace/Container_Instantiations.cpp
@@ -1,9 +1,6 @@
// $Id$
#include "ace/CDR_Base.h"
#include "ace/Unbounded_Queue.h"
-#include "ace/Unbounded_Set.h"
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// Instantiations of templates with basic data types that can be used
// across ACE+TAO.
@@ -12,17 +9,11 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template class ACE_Node<ACE_INT32>;
template class ACE_Unbounded_Queue<ACE_INT32>;
template class ACE_Unbounded_Queue_Iterator<ACE_INT32>;
-template class ACE_Unbounded_Set<ACE_HANDLE>;
-template class ACE_Unbounded_Set_Iterator<ACE_HANDLE>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate ACE_Node<ACE_INT32>
-#pragma instantiate ACE_Unbounded_Queue<ACE_INT32>
-#pragma instantiate ACE_Unbounded_Queue_Iterator<ACE_INT32>
-#pragma instantiate ACE_Unbounded_Set<ACE_HANDLE>
-#pragma instantiate ACE_Unbounded_Set_Iterator<ACE_HANDLE>
+#pragma instantiate ACE_Node<ACE_INT32>;
+#pragma instantiate ACE_Unbounded_Queue<ACE_INT32>;
+#pragma instantiate ACE_Unbounded_Queue_Iterator<ACE_INT32>;
#endif /*ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION*/
-
-ACE_END_VERSIONED_NAMESPACE_DECL