diff options
| author | 2026-03-26 22:24:16 +0000 | |
|---|---|---|
| committer | 2026-03-26 22:24:16 +0000 | |
| commit | cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776 (patch) | |
| tree | 2d510e98b89d9fb7a74b7ed44dede89ef5d3b50e /modules/dccallow.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
Switch typedefs to using statements.
Diffstat (limited to 'modules/dccallow.cpp')
| -rw-r--r-- | modules/dccallow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/dccallow.cpp b/modules/dccallow.cpp index 62a39a00b..f52e16851 100644 --- a/modules/dccallow.cpp +++ b/modules/dccallow.cpp @@ -101,11 +101,11 @@ public: } }; -typedef std::vector<User *> userlist; +using userlist = std::vector<User *>; userlist ul; -typedef std::vector<DCCAllow> dccallowlist; +using dccallowlist = std::vector<DCCAllow>; dccallowlist* dl; -typedef std::vector<BannedFileList> bannedfilelist; +using bannedfilelist = std::vector<BannedFileList>; bannedfilelist bfl; class DCCAllowExt final |
