aboutsummaryrefslogtreecommitdiffstats
path: root/modules/dnsbl.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/dnsbl.cpp
parentMerge branch 'insp4' into master. (diff)
Switch typedefs to using statements.
Diffstat (limited to 'modules/dnsbl.cpp')
-rw-r--r--modules/dnsbl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/dnsbl.cpp b/modules/dnsbl.cpp
index ca579ab5d..65a46536f 100644
--- a/modules/dnsbl.cpp
+++ b/modules/dnsbl.cpp
@@ -153,9 +153,9 @@ public:
}
};
-typedef std::vector<std::shared_ptr<DNSBLEntry>> DNSBLEntries;
-typedef SimpleExtItem<DNSBLMask> MaskExtItem;
-typedef ListExtItem<std::vector<std::string>> MarkExtItem;
+using DNSBLEntries = std::vector<std::shared_ptr<DNSBLEntry>>;
+using MaskExtItem = SimpleExtItem<DNSBLMask>;
+using MarkExtItem = ListExtItem<std::vector<std::string>>;
// Data which is shared with DNS lookup classes.
class SharedData final