Skip to content

Commit

Permalink
Update zmq.hpp
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
juseless authored Jul 17, 2017
1 parent b838563 commit 449a014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zmq.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ namespace zmq
class monitor_t
{
public:
monitor_t() : socketPtr(NULL), monitor_socket{NULL} {}
monitor_t() : socketPtr(NULL), monitor_socket(NULL) {}

virtual ~monitor_t()
{
Expand Down

0 comments on commit 449a014

Please sign in to comment.