mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-07 14:37:36 +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
@@ -61,8 +61,7 @@ class raw_decoder_t : public i_decoder
|
||||
|
||||
shared_message_memory_allocator _allocator;
|
||||
|
||||
raw_decoder_t (const raw_decoder_t &);
|
||||
void operator= (const raw_decoder_t &);
|
||||
ZMQ_NON_COPYABLE_NOR_MOVABLE (raw_decoder_t)
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user