Updated glob dep

This commit is contained in:
Bartek Kryza
2021-06-19 13:26:31 +02:00
parent 6f42c65ab9
commit e8fecbac64
3 changed files with 21 additions and 10 deletions

View File

@@ -407,7 +407,7 @@ clanguml::model::class_diagram::diagram generate(
std::vector<std::string> translation_units{};
for (const auto &g : diagram.glob) {
spdlog::debug("Processing glob: {}", g);
const auto matches = glob::glob(g);
const auto matches = glob::rglob(g);
std::copy(matches.begin(), matches.end(),
std::back_inserter(translation_units));
}