Move iteration into own scope

This commit is contained in:
Maschell 2024-04-20 10:01:21 +02:00
parent e237ba6e8c
commit 27dbc97eca
1 changed files with 10 additions and 8 deletions

View File

@ -126,14 +126,16 @@ void doStart(int argc, char **argv) {
// Order modules list by dependencies.
gLoadedModules = OrderModulesByDependencies(gLoadedModules);
// make sure the plugin backend module is at the end.
auto it = std::find_if(gLoadedModules.begin(),
gLoadedModules.end(),
[](auto &cur) { return std::string_view(cur->getExportName()) == "homebrew_wupsbackend"; });
if (it != gLoadedModules.end()) {
auto module = *it;
gLoadedModules.erase(it);
gLoadedModules.push_back(module);
{
// make sure the plugin backend module is at the end.
auto it = std::find_if(gLoadedModules.begin(),
gLoadedModules.end(),
[](auto &cur) { return std::string_view(cur->getExportName()) == "homebrew_wupsbackend"; });
if (it != gLoadedModules.end()) {
auto module = *it;
gLoadedModules.erase(it);
gLoadedModules.push_back(module);
}
}
bool aromaBaseModuleLoaded = false;