summaryrefslogtreecommitdiff
path: root/ACE/ace/Singleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Singleton.h')
-rw-r--r--ACE/ace/Singleton.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Singleton.h b/ACE/ace/Singleton.h
index 68932be0fb7..6fe66a19239 100644
--- a/ACE/ace/Singleton.h
+++ b/ACE/ace/Singleton.h
@@ -197,8 +197,8 @@ protected:
/// Contained instance.
ACE_TSS_TYPE (TYPE) instance_;
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Singleton<TYPE,ACE_LOCK> &))
- ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Singleton (const ACE_TSS_Singleton<TYPE,ACE_LOCK> &))
+ void operator= (const ACE_TSS_Singleton<TYPE,ACE_LOCK> &) = delete;
+ ACE_TSS_Singleton (const ACE_TSS_Singleton<TYPE,ACE_LOCK> &) = delete;
#if !defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
/// Pointer to the Singleton (ACE_Cleanup) instance.