mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2025-10-30 08:02:29 +00:00
switch to using usings
This commit is contained in:
parent
9406d7f197
commit
e3016df67b
1 changed files with 2 additions and 2 deletions
|
|
@ -15,9 +15,9 @@ namespace recomp::config {
|
|||
std::string json_path; // used as a json pointer
|
||||
};
|
||||
// config key -> JSONRef
|
||||
typedef std::unordered_map<std::string, JSONRef> config_registry_key_reference_map;
|
||||
using config_registry_key_reference_map = std::unordered_map<std::string, JSONRef>;
|
||||
// config group -> json
|
||||
typedef std::unordered_map<std::string, nlohmann::json> config_registry_group_json_map;
|
||||
using config_registry_group_json_map = std::unordered_map<std::string, nlohmann::json>;
|
||||
|
||||
struct ConfigRegistry {
|
||||
config_registry_key_reference_map key_ref_map;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue