mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-11-15 15:09:31 +01:00
Add missing assignment operators
Summary: related to T13767 - add missing assignment operators - marked single argument constructors as explicit where needed - add even more missing includes Reviewers: ivica Reviewed By: ivica Subscribers: iljazovic, miljen Differential Revision: https://repo.mireo.local/D30813
This commit is contained in:
@@ -91,7 +91,7 @@ public:
|
||||
publish_send_op(publish_send_op&&) = default;
|
||||
publish_send_op(const publish_send_op&) = delete;
|
||||
|
||||
publish_send_op& operator=(publish_send_op&&) noexcept = default;
|
||||
publish_send_op& operator=(publish_send_op&&) = default;
|
||||
publish_send_op& operator=(const publish_send_op&) = delete;
|
||||
|
||||
using allocator_type = asio::associated_allocator_t<handler_type>;
|
||||
|
||||
Reference in New Issue
Block a user