summaryrefslogtreecommitdiff
path: root/TAO/tao/CDR.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 /TAO/tao/CDR.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 'TAO/tao/CDR.h')
-rw-r--r--TAO/tao/CDR.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/TAO/tao/CDR.h b/TAO/tao/CDR.h
index f7406c6000d..3efeca9a5ca 100644
--- a/TAO/tao/CDR.h
+++ b/TAO/tao/CDR.h
@@ -240,9 +240,10 @@ public:
int offset (char* pos);
private:
- // disallow copying...
- TAO_OutputCDR (const TAO_OutputCDR& rhs);
- TAO_OutputCDR& operator= (const TAO_OutputCDR& rhs);
+ TAO_OutputCDR (const TAO_OutputCDR&rhs) = delete;
+ TAO_OutputCDR& operator= (const TAO_OutputCDR&) = delete;
+ TAO_OutputCDR (TAO_OutputCDR&&) = delete;
+ TAO_OutputCDR& operator= (TAO_OutputCDR&&) = delete;
private:
/**