diff options
| author | 2026-03-26 22:24:16 +0000 | |
|---|---|---|
| committer | 2026-03-26 22:24:16 +0000 | |
| commit | cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776 (patch) | |
| tree | 2d510e98b89d9fb7a74b7ed44dede89ef5d3b50e /modules/gateway.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
| download | inspircd++-cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776.tar.gz inspircd++-cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776.tar.bz2 inspircd++-cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776.zip | |
Switch typedefs to using statements.
Diffstat (limited to 'modules/gateway.cpp')
| -rw-r--r-- | modules/gateway.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gateway.cpp b/modules/gateway.cpp index 1793d05f3..3bb41f1ae 100644 --- a/modules/gateway.cpp +++ b/modules/gateway.cpp @@ -36,7 +36,7 @@ #include "modules/whois.h" // One or more hostmask globs or CIDR ranges. -typedef std::vector<std::string> MaskList; +using MaskList = std::vector<std::string>; // Encapsulates information about a username gateway. class UserHost final |
