mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2025-12-03 22:53:01 +00:00
switch to using usings
This commit is contained in:
parent
57ec421d78
commit
e5a2ae6b96
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
|
std::string json_path; // used as a json pointer
|
||||||
};
|
};
|
||||||
// config key -> JSONRef
|
// 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
|
// 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 {
|
struct ConfigRegistry {
|
||||||
config_registry_key_reference_map key_ref_map;
|
config_registry_key_reference_map key_ref_map;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue