client/List: use using
instead of typedef
This commit is contained in:
parent
472e4bfd41
commit
0b4e7b3317
@ -25,8 +25,9 @@
|
||||
#include <boost/intrusive/list.hpp>
|
||||
|
||||
class ClientList {
|
||||
typedef boost::intrusive::list<Client,
|
||||
boost::intrusive::constant_time_size<true>> List;
|
||||
using List =
|
||||
boost::intrusive::list<Client,
|
||||
boost::intrusive::constant_time_size<true>>;
|
||||
|
||||
const unsigned max_size;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user