diff options
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 |
