summaryrefslogtreecommitdiff
path: root/ACE/ace/Task_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-01-05 13:12:24 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-01-05 13:12:24 +0100
commit7bb61a6381e22396fbbd525bc0373c546e3d9b71 (patch)
treed05ef5da58195e09bfa421af5f024d90030c1ea4 /ACE/ace/Task_T.h
parent78006062ece6be12eba3e81471961c74743ba071 (diff)
downloadATCD-7bb61a6381e22396fbbd525bc0373c546e3d9b71.tar.gz
Use delete instead of ACE_UNIMPLEMENTED_FUNC
* ACE/ace/Active_Map_Manager_T.h: * ACE/ace/Arg_Shifter.h: * ACE/ace/Asynch_IO.h: * ACE/ace/Auto_IncDec_T.h: * ACE/ace/Based_Pointer_Repository.h: * ACE/ace/Cache_Map_Manager_T.h: * ACE/ace/Compression/Compressor.h: * ACE/ace/Condition_T.h: * ACE/ace/Dynamic_Service.h: * ACE/ace/Free_List.h: * ACE/ace/Guard_T.h: * ACE/ace/Hash_Map_Manager_T.h: * ACE/ace/Hash_Multi_Map_Manager_T.h: * ACE/ace/IOStream_T.h: * ACE/ace/Managed_Object.h: * ACE/ace/Map_Manager.h: * ACE/ace/Map_T.h: * ACE/ace/Message_Block_T.h: * ACE/ace/Message_Queue_T.h: * ACE/ace/OS_Log_Msg_Attributes.h: * ACE/ace/Parse_Node.cpp: * ACE/ace/Parse_Node.h: * ACE/ace/SSL/SSL_SOCK_Stream.h: * ACE/ace/Select_Reactor_T.h: * ACE/ace/Singleton.h: * ACE/ace/Task_T.h: * ACE/ace/Timer_Hash_T.h: * ACE/ace/Timer_List_T.h:
Diffstat (limited to 'ACE/ace/Task_T.h')
-rw-r--r--ACE/ace/Task_T.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ACE/ace/Task_T.h b/ACE/ace/Task_T.h
index 708afff2256..69b235668e7 100644
--- a/ACE/ace/Task_T.h
+++ b/ACE/ace/Task_T.h
@@ -168,10 +168,9 @@ public: // Should be protected:
ACE_ALLOC_HOOK_DECLARE;
private:
-
// = Disallow these operations.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Task<ACE_SYNCH_USE, TIME_POLICY> &))
- ACE_UNIMPLEMENTED_FUNC (ACE_Task (const ACE_Task<ACE_SYNCH_USE, TIME_POLICY> &))
+ void operator= (const ACE_Task<ACE_SYNCH_USE, TIME_POLICY> &) = delete;
+ ACE_Task (const ACE_Task<ACE_SYNCH_USE, TIME_POLICY> &) = delete;
};
#if defined ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION_EXPORT