summaryrefslogtreecommitdiff
path: root/ACE/examples/ASX/UPIPE_Event_Server
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-04-29 11:34:48 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-04-29 11:34:48 +0200
commitae4bd945a234a175b54dafb1cb54678b7cc67639 (patch)
tree20b02a85c31de92975667c3100b98af8719fc8f1 /ACE/examples/ASX/UPIPE_Event_Server
parente12779d807b00fdc1b69a224dd92ff58d5e20906 (diff)
downloadATCD-ae4bd945a234a175b54dafb1cb54678b7cc67639.tar.gz
Removed not used auto_ptr member, use delete instead of ACE_UNIMPLEMENTED_FUNC, layout changes, fixed typos in comments
* ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h: * ACE/netsvcs/lib/Log_Message_Receiver.h: * ACE/performance-tests/TCP/tcp_test.cpp: * TAO/orbsvcs/Trading_Service/README: * TAO/orbsvcs/Trading_Service/Trading_Server.cpp: * TAO/orbsvcs/Trading_Service/Trading_Service.cpp: * TAO/orbsvcs/Trading_Service/Trading_Service.h: * TAO/orbsvcs/orbsvcs/AV/AVStreams_i.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Interpreter.cpp: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Interpreter.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Nodes.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Visitors.h: * TAO/orbsvcs/orbsvcs/Trader/Offer_Database.h: * TAO/orbsvcs/orbsvcs/Trader/Trader.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_Constraint_Visitors.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_T.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.h: * TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.cpp: * TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h: * TAO/orbsvcs/tests/Trading/Simple_Dynamic.h: * TAO/tao/RTCORBA/Network_Priority_Mapping_Manager.h: * TAO/tao/RTCORBA/Priority_Mapping_Manager.h: * TAO/tao/RTScheduling/RTScheduler_Manager.h:
Diffstat (limited to 'ACE/examples/ASX/UPIPE_Event_Server')
-rw-r--r--ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h b/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h
index d8ebe216bbb..adac931146a 100644
--- a/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h
+++ b/ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h
@@ -88,7 +88,7 @@ public:
int send_peers (ACE_Message_Block *mb);
protected:
-// Handle control messages arriving from adjacent Modules.
+ // Handle control messages arriving from adjacent Modules.
virtual int control (ACE_Message_Block *);
// Map used to keep track of active peers.
@@ -102,9 +102,8 @@ protected:
Acceptor_Factory<PEER_HANDLER, PEER_KEY> *acceptor_;
private:
-// Prevent copies and pass-by-value.
- ACE_UNIMPLEMENTED_FUNC (Peer_Router (const Peer_Router<PEER_HANDLER, PEER_KEY> &))
- ACE_UNIMPLEMENTED_FUNC (void operator= (const Peer_Router<PEER_HANDLER, PEER_KEY> &))
+ Peer_Router (const Peer_Router<PEER_HANDLER, PEER_KEY> &) = delete;
+ void operator= (const Peer_Router<PEER_HANDLER, PEER_KEY> &) = delete;
};
#if defined (__ACE_INLINE__)