improve macro detection

This commit is contained in:
water111
2026-07-28 12:00:35 -07:00
parent 1e4935a164
commit dfb75fc594
226 changed files with 5021 additions and 5049 deletions
+3
View File
@@ -46,6 +46,9 @@ Config make_config_via_json(nlohmann::json& json) {
config.expected_elf_name = json.at("expected_elf_name").get<std::string>();
}
config.all_types_file = json.at("all_types_file").get<std::string>();
if (json.contains("demacro_file")) {
config.demacro_file = json.at("demacro_file").get<std::string>();
}
auto inputs_json = read_json_file_from_config(json, "inputs_file");
config.dgo_names = json.contains("dgo_names")