mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-01 18:31:45 +02:00
Modernize: replace typedef with using
This commit is contained in:
parent
f388449c0a
commit
f1e672d375
7 changed files with 12 additions and 14 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue