aboutsummaryrefslogtreecommitdiffstats
path: root/modules/extra/geo_maxmind.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/extra/geo_maxmind.cpp
parentMerge branch 'insp4' into master. (diff)
Switch typedefs to using statements.
Diffstat (limited to 'modules/extra/geo_maxmind.cpp')
-rw-r--r--modules/extra/geo_maxmind.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/geo_maxmind.cpp b/modules/extra/geo_maxmind.cpp
index 391e7dc7c..3b1b8f73e 100644
--- a/modules/extra/geo_maxmind.cpp
+++ b/modules/extra/geo_maxmind.cpp
@@ -72,7 +72,7 @@ public:
}
};
-typedef insp::flat_map<std::string, Geolocation::Location*> LocationMap;
+using LocationMap = insp::flat_map<std::string, Geolocation::Location*>;
class GeolocationAPIImpl final
: public Geolocation::APIBase