mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-07-31 13:07:37 +02:00
fix for default completion tokens on Boost 1.87.0
Reviewers: ivica Reviewed By: ivica Subscribers: korina, miljen Differential Revision: https://repo.mireo.local/D33181
This commit is contained in:
@ -111,7 +111,7 @@ public:
|
||||
}
|
||||
|
||||
void operator()(std::array<std::size_t, 3> /* ord */) {
|
||||
_handler.complete(asio::error::operation_aborted);
|
||||
_handler.complete(make_error_code(asio::error::operation_aborted));
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -66,7 +66,8 @@ public:
|
||||
/// The client type when rebound to the specified executor.
|
||||
using other = mqtt_client<
|
||||
typename detail::rebind_executor<StreamType, Executor>::other,
|
||||
TlsContext
|
||||
TlsContext,
|
||||
LoggerType
|
||||
>;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user