File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 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 ();
You can’t perform that action at this time.
0 commit comments