0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-15 02:07:59 +08:00

Problem: select.cpp/hpp build fails with reorder error

Solution: initialise class variables in the same order they are
declared
This commit is contained in:
Luca Boccassi 2016-11-24 13:07:12 +00:00
parent ba74890f2f
commit 121c9d16f5

View File

@ -53,8 +53,8 @@ zmq::select_t::select_t (const zmq::ctx_t &ctx_) :
// Fine as long as map is not cleared.
current_family_entry_it (family_entries.end ()),
#else
retired (false),
maxfd (retired_fd),
retired (false),
#endif
stopping (false)
{