summaryrefslogtreecommitdiff
path: root/ace/Lock_Adapter_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Lock_Adapter_T.cpp')
-rw-r--r--ace/Lock_Adapter_T.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/ace/Lock_Adapter_T.cpp b/ace/Lock_Adapter_T.cpp
deleted file mode 100644
index ab69d2387bb..00000000000
--- a/ace/Lock_Adapter_T.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-// $Id$
-
-#ifndef ACE_LOCK_ADAPTER_T_C
-#define ACE_LOCK_ADAPTER_T_C
-
-#include "ace/Lock_Adapter_T.h"
-#include "ace/OS_Memory.h" // for ACE_NEW
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-ACE_RCSID(ace, Lock_Adapter_T, "$Id$")
-
-#if !defined (__ACE_INLINE__)
-#include "ace/Lock_Adapter_T.inl"
-#endif /* __ACE_INLINE__ */
-
-// This constructor isn't inlined, because SunPRO C++ 4.2 + patch
-// 104631-07 has trouble compiling TAO with it inline.
-template <class ACE_LOCKING_MECHANISM>
-ACE_Lock_Adapter<ACE_LOCKING_MECHANISM>::ACE_Lock_Adapter (void)
- : lock_ (0),
- delete_lock_ (1)
-{
- ACE_NEW (this->lock_,
- ACE_LOCKING_MECHANISM);
-}
-
-#endif /* ACE_LOCK_ADAPTER_T_C */