Skip to content

Commit

Permalink
Bump version number to 4.7.1 for bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
sigiesec committed Oct 5, 2020
1 parent deb1617 commit 76bf169
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions zmq.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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, \
Expand Down Expand Up @@ -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())
{
}

Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 76bf169

Please sign in to comment.