diff options
| author | 2026-03-26 22:24:16 +0000 | |
|---|---|---|
| committer | 2026-03-26 22:24:16 +0000 | |
| commit | cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776 (patch) | |
| tree | 2d510e98b89d9fb7a74b7ed44dede89ef5d3b50e /modules/denychans.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
Switch typedefs to using statements.
Diffstat (limited to 'modules/denychans.cpp')
| -rw-r--r-- | modules/denychans.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/denychans.cpp b/modules/denychans.cpp index fc1cab9db..d6e2565fa 100644 --- a/modules/denychans.cpp +++ b/modules/denychans.cpp @@ -48,8 +48,8 @@ struct BadChannel final } }; -typedef std::vector<BadChannel> BadChannels; -typedef std::vector<std::string> GoodChannels; +using BadChannels = std::vector<BadChannel>; +using GoodChannels = std::vector<std::string>; class ModuleDenyChannels final : public Module |
