mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-10-04 04:40:55 +02:00
Downgrade C++ standard requirement to C++17
Summary: related to T13242 Reviewers: ivica Reviewed By: ivica Subscribers: miljen, iljazovic Differential Revision: https://repo.mireo.local/D26860
This commit is contained in:
@@ -50,7 +50,7 @@ namespace client {
|
||||
/**
|
||||
* \brief MQTT client error codes.
|
||||
*
|
||||
* \details Represents error that occur on the client side.
|
||||
* \details Represents error that occur on the client side.
|
||||
*/
|
||||
enum class error : int {
|
||||
/// \cond INTERNAL
|
||||
@@ -162,7 +162,7 @@ public:
|
||||
{}
|
||||
|
||||
constexpr explicit reason_code(uint8_t code) : _code(code) {}
|
||||
/// \endcond
|
||||
/// \endcond
|
||||
|
||||
/// Copy constructor.
|
||||
reason_code(const reason_code&) = default;
|
||||
@@ -393,7 +393,7 @@ constexpr reason_code banned { 0x8a };
|
||||
/** The Server is shutting down. */
|
||||
constexpr reason_code server_shutting_down { 0x8b };
|
||||
|
||||
/** The authentication method is not supported or
|
||||
/** The authentication method is not supported or
|
||||
does not match the method currently in use. */
|
||||
constexpr reason_code bad_authentication_method { 0x8c };
|
||||
|
||||
|
Reference in New Issue
Block a user