From 76bf169fd67b8e99c1b0e6490029d9cd5ef97666 Mon Sep 17 00:00:00 2001 From: Simon Giesecke Date: Mon, 5 Oct 2020 14:50:41 +0200 Subject: [PATCH] Bump version number to 4.7.1 for bugfix release --- zmq.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/zmq.hpp b/zmq.hpp index 98961d54..d02a208f 100644 --- a/zmq.hpp +++ b/zmq.hpp @@ -144,7 +144,7 @@ /* Version macros for compile-time API version detection */ #define CPPZMQ_VERSION_MAJOR 4 #define CPPZMQ_VERSION_MINOR 7 -#define CPPZMQ_VERSION_PATCH 0 +#define CPPZMQ_VERSION_PATCH 1 #define CPPZMQ_VERSION \ ZMQ_MAKE_VERSION(CPPZMQ_VERSION_MAJOR, CPPZMQ_VERSION_MINOR, \ @@ -1096,7 +1096,8 @@ class const_buffer #endif } 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 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) throw error_t();