Commit 0b4e7b33 authored by Max Kellermann's avatar Max Kellermann

client/List: use `using` instead of `typedef`

parent 472e4bfd
......@@ -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;
......
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