From e5a2ae6b961bfa36163f0d979388b20584b9574b Mon Sep 17 00:00:00 2001 From: thecozies <79979276+thecozies@users.noreply.github.com> Date: Sat, 20 Jul 2024 10:00:53 -0500 Subject: [PATCH] switch to using usings --- librecomp/src/config/ConfigRegistry.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/librecomp/src/config/ConfigRegistry.hpp b/librecomp/src/config/ConfigRegistry.hpp index 44ffdfb..e9dd19d 100644 --- a/librecomp/src/config/ConfigRegistry.hpp +++ b/librecomp/src/config/ConfigRegistry.hpp @@ -15,9 +15,9 @@ namespace recomp::config { std::string json_path; // used as a json pointer }; // config key -> JSONRef - typedef std::unordered_map config_registry_key_reference_map; + using config_registry_key_reference_map = std::unordered_map; // config group -> json - typedef std::unordered_map config_registry_group_json_map; + using config_registry_group_json_map = std::unordered_map; struct ConfigRegistry { config_registry_key_reference_map key_ref_map;