mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-09 23:57:50 +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
@@ -64,8 +64,7 @@ class ipc_connecter_t : public stream_connecter_base_t
|
||||
// retired_fd if the connection was unsuccessful.
|
||||
fd_t connect ();
|
||||
|
||||
ipc_connecter_t (const ipc_connecter_t &);
|
||||
const ipc_connecter_t &operator= (const ipc_connecter_t &);
|
||||
ZMQ_NON_COPYABLE_NOR_MOVABLE (ipc_connecter_t)
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user