summaryrefslogtreecommitdiff
path: root/ACE/ace/ARGV.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 13:27:23 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 13:27:23 +0100
commit3d8190f957b1820cc9dfc72818feb106560e1413 (patch)
treefe205912fc2d40228d5fdce4d64016b19bc9c1c2 /ACE/ace/ARGV.h
parentcfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff)
downloadATCD-3d8190f957b1820cc9dfc72818feb106560e1413.tar.gz
Instead of declaring private copy/assignment list them as deleted and added move versions also as deleted
* ACE/ace/ARGV.h: * ACE/ace/Activation_Queue.h: * ACE/ace/CDR_Size.h: * ACE/ace/CDR_Stream.h: * ACE/ace/DLL_Manager.h: * ACE/ace/Get_Opt.h: * ACE/ace/Log_Record.h: * ACE/ace/Message_Queue_NT.h: * ACE/ace/Message_Queue_Vx.h: * ACE/ace/Method_Request.h: * ACE/ace/Null_Mutex.h: * ACE/ace/Object_Manager.h: * ACE/ace/Object_Manager_Base.h: * ACE/ace/Process.h: * ACE/ace/Read_Buffer.h: * ACE/ace/Select_Reactor.h: * ACE/ace/TP_Reactor.h: * ACE/ace/XML_Utils/XML_Error_Handler.h: * TAO/orbsvcs/ImplRepo_Service/Activator_Loader.h: * TAO/orbsvcs/ImplRepo_Service/Locator_Loader.h: * TAO/orbsvcs/orbsvcs/Concurrency/Concurrency_Loader.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_Event_Loader.h: * TAO/orbsvcs/orbsvcs/Notify/Event_Manager.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Interpreter.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Visitors.h: * TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h: * TAO/tao/CDR.h: * TAO/tao/Connector_Registry.h: * TAO/tao/GIOP_Fragmentation_Strategy.h: * TAO/tao/MMAP_Allocator.h: * TAO/tao/Nested_Upcall_Guard.h: * TAO/tao/Null_Fragmentation_Strategy.h: * TAO/tao/Object_Ref_Table.h: * TAO/tao/On_Demand_Fragmentation_Strategy.h: * TAO/tao/Policy_Manager.h: * TAO/tao/Resource_Factory.h: * TAO/tao/TAO_Singleton_Manager.h: * TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.h:
Diffstat (limited to 'ACE/ace/ARGV.h')
-rw-r--r--ACE/ace/ARGV.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/ACE/ace/ARGV.h b/ACE/ace/ARGV.h
index 231056ee37b..72847df2eea 100644
--- a/ACE/ace/ARGV.h
+++ b/ACE/ace/ARGV.h
@@ -276,11 +276,10 @@ public:
int add (CHAR_TYPE *argv[], bool quote_args = false);
private:
- /// Copy constructor not implemented.
- ACE_UNIMPLEMENTED_FUNC (ACE_ARGV_T (const ACE_ARGV_T<CHAR_TYPE>&))
-
- /// Assignment operator not implemented.
- ACE_UNIMPLEMENTED_FUNC (ACE_ARGV_T operator= (const ACE_ARGV_T<CHAR_TYPE>&))
+ ACE_ARGV_T (const ACE_ARGV_T<CHAR_TYPE>&) = delete;
+ ACE_ARGV_T operator= (const ACE_ARGV_T<CHAR_TYPE>&) = delete;
+ ACE_ARGV_T (ACE_ARGV_T<CHAR_TYPE>&&) = delete;
+ ACE_ARGV_T operator= (ACE_ARGV_T<CHAR_TYPE>&&) = delete;
/// Creates buf_ from the queue of added args, deletes previous buf_.
int create_buf_from_queue (void);