mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-03 12:58:05 +01:00
Problem: udp_engine_t initialization reorder
Solution: initialize class variable in the same order as they are defined.
This commit is contained in:
parent
24b84081be
commit
1046f35930
@ -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)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user