aboutsummaryrefslogtreecommitdiffstats
path: root/modules/denychans.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-26 22:24:16 +0000
committerGravatar Sadie Powell2026-03-26 22:24:16 +0000
commitcd2d667ca7d3d31dbcf1f3bf0717b744b11ec776 (patch)
tree2d510e98b89d9fb7a74b7ed44dede89ef5d3b50e /modules/denychans.cpp
parentMerge branch 'insp4' into master. (diff)
Switch typedefs to using statements.
Diffstat (limited to 'modules/denychans.cpp')
-rw-r--r--modules/denychans.cpp4
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