Skip to content

Commit 76bf169

Browse files
committed
Bump version number to 4.7.1 for bugfix release
1 parent deb1617 commit 76bf169

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

zmq.hpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
/* Version macros for compile-time API version detection */
145145
#define CPPZMQ_VERSION_MAJOR 4
146146
#define CPPZMQ_VERSION_MINOR 7
147-
#define CPPZMQ_VERSION_PATCH 0
147+
#define CPPZMQ_VERSION_PATCH 1
148148

149149
#define CPPZMQ_VERSION \
150150
ZMQ_MAKE_VERSION(CPPZMQ_VERSION_MAJOR, CPPZMQ_VERSION_MINOR, \
@@ -1096,7 +1096,8 @@ class const_buffer
10961096
#endif
10971097
}
10981098
constexpr const_buffer(const mutable_buffer &mb) noexcept :
1099-
_data(mb.data()), _size(mb.size())
1099+
_data(mb.data()),
1100+
_size(mb.size())
11001101
{
11011102
}
11021103

@@ -2192,7 +2193,8 @@ class socket_t : public detail::socket_base
21922193

21932194
// used by monitor_t
21942195
socket_t(void *context_, int type_) :
2195-
detail::socket_base(zmq_socket(context_, type_)), ctxptr(context_)
2196+
detail::socket_base(zmq_socket(context_, type_)),
2197+
ctxptr(context_)
21962198
{
21972199
if (_handle == ZMQ_NULLPTR)
21982200
throw error_t();

0 commit comments

Comments
 (0)