Bump version number to 4.7.1 for bugfix release

This commit is contained in:
Simon Giesecke 2020-10-05 14:50:41 +02:00
parent deb1617ebc
commit 76bf169fd6

View File

@ -144,7 +144,7 @@
/* Version macros for compile-time API version detection */ /* Version macros for compile-time API version detection */
#define CPPZMQ_VERSION_MAJOR 4 #define CPPZMQ_VERSION_MAJOR 4
#define CPPZMQ_VERSION_MINOR 7 #define CPPZMQ_VERSION_MINOR 7
#define CPPZMQ_VERSION_PATCH 0 #define CPPZMQ_VERSION_PATCH 1
#define CPPZMQ_VERSION \ #define CPPZMQ_VERSION \
ZMQ_MAKE_VERSION(CPPZMQ_VERSION_MAJOR, CPPZMQ_VERSION_MINOR, \ ZMQ_MAKE_VERSION(CPPZMQ_VERSION_MAJOR, CPPZMQ_VERSION_MINOR, \
@ -1096,7 +1096,8 @@ class const_buffer
#endif #endif
} }
constexpr const_buffer(const mutable_buffer &mb) noexcept : constexpr const_buffer(const mutable_buffer &mb) noexcept :
_data(mb.data()), _size(mb.size()) _data(mb.data()),
_size(mb.size())
{ {
} }
@ -2192,7 +2193,8 @@ class socket_t : public detail::socket_base
// used by monitor_t // used by monitor_t
socket_t(void *context_, int type_) : socket_t(void *context_, int type_) :
detail::socket_base(zmq_socket(context_, type_)), ctxptr(context_) detail::socket_base(zmq_socket(context_, type_)),
ctxptr(context_)
{ {
if (_handle == ZMQ_NULLPTR) if (_handle == ZMQ_NULLPTR)
throw error_t(); throw error_t();