Modernize: replace typedef with using

This commit is contained in:
badaix 2020-09-21 16:26:04 +02:00
parent f388449c0a
commit f1e672d375
7 changed files with 12 additions and 14 deletions

View file

@ -35,8 +35,8 @@ using json = nlohmann::json;
struct ClientInfo;
struct Group;
typedef std::shared_ptr<ClientInfo> ClientInfoPtr;
typedef std::shared_ptr<Group> GroupPtr;
using ClientInfoPtr = std::shared_ptr<ClientInfo>;
using GroupPtr = std::shared_ptr<Group>;
template <typename T>