File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 144
144
/* Version macros for compile-time API version detection */
145
145
#define CPPZMQ_VERSION_MAJOR 4
146
146
#define CPPZMQ_VERSION_MINOR 7
147
- #define CPPZMQ_VERSION_PATCH 0
147
+ #define CPPZMQ_VERSION_PATCH 1
148
148
149
149
#define CPPZMQ_VERSION \
150
150
ZMQ_MAKE_VERSION (CPPZMQ_VERSION_MAJOR, CPPZMQ_VERSION_MINOR, \
@@ -1096,7 +1096,8 @@ class const_buffer
1096
1096
#endif
1097
1097
}
1098
1098
constexpr const_buffer (const mutable_buffer &mb) noexcept :
1099
- _data(mb.data()), _size(mb.size())
1099
+ _data(mb.data()),
1100
+ _size(mb.size())
1100
1101
{
1101
1102
}
1102
1103
@@ -2192,7 +2193,8 @@ class socket_t : public detail::socket_base
2192
2193
2193
2194
// used by monitor_t
2194
2195
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_)
2196
2198
{
2197
2199
if (_handle == ZMQ_NULLPTR)
2198
2200
throw error_t ();
You can’t perform that action at this time.
0 commit comments