Merge pull request #4373 from Arkoniak/4354-wildcard-config-regression

bugfix: expanding wildcards in config includes (#4354)
This commit is contained in:
Alexis Rouillard
2025-10-01 14:23:31 +02:00
committed by GitHub
7 changed files with 76 additions and 10 deletions

View File

@ -35,7 +35,8 @@ class Config {
void setupConfig(Json::Value &dst, const std::string &config_file, int depth);
void resolveConfigIncludes(Json::Value &config, int depth);
void mergeConfig(Json::Value &a_config_, Json::Value &b_config_);
static std::optional<std::string> findIncludePath(const std::string &name);
static std::vector<std::string> findIncludePath(
const std::string &name, const std::vector<std::string> &dirs = CONFIG_DIRS);
std::string config_file_;