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:
Simon Giesecke
2019-12-08 19:22:04 +01:00
committed by Simon Giesecke
parent 86d7de38ca
commit f60f909899
99 changed files with 178 additions and 269 deletions

View File

@@ -61,8 +61,7 @@ class pull_t : public socket_base_t
// Fair queueing object for inbound pipes.
fq_t _fq;
pull_t (const pull_t &);
const pull_t &operator= (const pull_t &);
ZMQ_NON_COPYABLE_NOR_MOVABLE (pull_t)
};
}