Problem: udp_engine_t initialization reorder

Solution: initialize class variable in the same order as they are
defined.
This commit is contained in:
Luca Boccassi 2016-02-21 23:46:51 +00:00
parent 24b84081be
commit 1046f35930

View File

@ -49,11 +49,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
zmq::udp_engine_t::udp_engine_t() :
plugged (false),
fd(NULL),
session(NULL),
handle(NULL),
address(nullptr),
send_enabled(false),
recv_enabled(false),
handle(NULL),
session(NULL)
recv_enabled(false)
{
}