Skip to content

Commit 449a014

Browse files
authored
Update zmq.hpp
Line 706 constructor was: monitor_t() : socketPtr(NULL), monitor_socket{NULL} {} but should be: monitor_t() : socketPtr(NULL), monitor_socket(NULL) {} Note change of bracket types for monitor_socket parameter.
1 parent b838563 commit 449a014

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zmq.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ namespace zmq
703703
class monitor_t
704704
{
705705
public:
706-
monitor_t() : socketPtr(NULL), monitor_socket{NULL} {}
706+
monitor_t() : socketPtr(NULL), monitor_socket(NULL) {}
707707

708708
virtual ~monitor_t()
709709
{

0 commit comments

Comments
 (0)