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.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/ace/Container_Instantiations.cpp b/ace/Container_Instantiations.cpp
deleted file mode 100644
index 031a262808d..00000000000
--- a/ace/Container_Instantiations.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// $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.
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-
-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>
-
-#endif /*ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION*/
-
-ACE_END_VERSIONED_NAMESPACE_DECL