Commit 24b84081 authored by Luca Boccassi's avatar Luca Boccassi

Problem: socks_connecter_t initialization reorder

Solution: initialize class variable in the same order as they are
defined.
parent a6e49860
...@@ -61,11 +61,11 @@ zmq::socks_connecter_t::socks_connecter_t (class io_thread_t *io_thread_, ...@@ -61,11 +61,11 @@ zmq::socks_connecter_t::socks_connecter_t (class io_thread_t *io_thread_,
proxy_addr (proxy_addr_), proxy_addr (proxy_addr_),
status (unplugged), status (unplugged),
s (retired_fd), s (retired_fd),
delayed_start (delayed_start_),
session (session_),
handle(NULL), handle(NULL),
handle_valid(false), handle_valid(false),
delayed_start (delayed_start_),
timer_started(false), timer_started(false),
session (session_),
current_reconnect_ivl (options.reconnect_ivl) current_reconnect_ivl (options.reconnect_ivl)
{ {
zmq_assert (addr); zmq_assert (addr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment