summaryrefslogtreecommitdiff
path: root/TAO/tao/Messaging
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-04-29 12:34:31 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-04-29 12:34:31 +0200
commit6f3e147d990d4252f251dde60e5730e1c3009dfe (patch)
tree02a8d26414950b41af327e3424c9a523727e46b5 /TAO/tao/Messaging
parente12779d807b00fdc1b69a224dd92ff58d5e20906 (diff)
downloadATCD-6f3e147d990d4252f251dde60e5730e1c3009dfe.tar.gz
Make use of delete to make sure an operation can't be called
* ACE/ace/TP_Reactor.h: * TAO/tao/Collocated_Invocation.h: * TAO/tao/DynamicInterface/DII_Arguments.h: * TAO/tao/DynamicInterface/DII_Arguments.inl: * TAO/tao/DynamicInterface/DII_Invocation.h: * TAO/tao/DynamicInterface/DII_Invocation_Adapter.h: * TAO/tao/DynamicInterface/DII_Reply_Handler.cpp: * TAO/tao/DynamicInterface/DII_Reply_Handler.h: * TAO/tao/DynamicInterface/Dynamic_Adapter_Impl.h: * TAO/tao/DynamicInterface/ExceptionList.h: * TAO/tao/Messaging/Asynch_Invocation_Adapter.h: * TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.h:
Diffstat (limited to 'TAO/tao/Messaging')
-rw-r--r--TAO/tao/Messaging/Asynch_Invocation_Adapter.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/TAO/tao/Messaging/Asynch_Invocation_Adapter.h b/TAO/tao/Messaging/Asynch_Invocation_Adapter.h
index 7175889b3a4..052dcd75da7 100644
--- a/TAO/tao/Messaging/Asynch_Invocation_Adapter.h
+++ b/TAO/tao/Messaging/Asynch_Invocation_Adapter.h
@@ -93,11 +93,9 @@ namespace TAO
ARDB_Refcount_Functor> safe_rd_;
private:
- /// Don't allow default initializations
- Asynch_Invocation_Adapter ();
-
- Asynch_Invocation_Adapter (const Asynch_Invocation_Adapter &);
- Asynch_Invocation_Adapter & operator= (const Asynch_Invocation_Adapter &);
+ Asynch_Invocation_Adapter () = delete;
+ Asynch_Invocation_Adapter (const Asynch_Invocation_Adapter &) = delete;
+ Asynch_Invocation_Adapter & operator= (const Asynch_Invocation_Adapter &) = delete;
};
} // End namespace TAO