Commit 1046f359 authored by Luca Boccassi's avatar Luca Boccassi

Problem: udp_engine_t initialization reorder

Solution: initialize class variable in the same order as they are
defined.
parent 24b84081
...@@ -49,11 +49,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. ...@@ -49,11 +49,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
zmq::udp_engine_t::udp_engine_t() : zmq::udp_engine_t::udp_engine_t() :
plugged (false), plugged (false),
fd(NULL), fd(NULL),
session(NULL),
handle(NULL),
address(nullptr), address(nullptr),
send_enabled(false), send_enabled(false),
recv_enabled(false), recv_enabled(false)
handle(NULL),
session(NULL)
{ {
} }
......
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