mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-07 05:58:45 +01:00
Problem: missing use of C++11 = delete and = default
Solution: introduce macros ZMQ_DEFAULT and ZMQ_NON_COPYABLE_NOR_MOVABLE
This commit is contained in:
committed by
Simon Giesecke
parent
86d7de38ca
commit
f60f909899
@@ -81,8 +81,7 @@ class server_t : public socket_base_t
|
||||
// algorithm. This value is the next ID to use (if not used already).
|
||||
uint32_t _next_routing_id;
|
||||
|
||||
server_t (const server_t &);
|
||||
const server_t &operator= (const server_t &);
|
||||
ZMQ_NON_COPYABLE_NOR_MOVABLE (server_t)
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user