1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-04 05:17:47 +02:00

moduleMain functions were never called but with nullptr; so simplify

This commit is contained in:
Paul Licameli
2021-05-13 16:20:44 -04:00
parent 6242be0a8e
commit bd6fb75886
19 changed files with 36 additions and 97 deletions

View File

@@ -458,7 +458,7 @@ void ModuleManager::InitializeBuiltins()
for (auto moduleMain : builtinModuleList())
{
ModuleInterfaceHandle module {
moduleMain(nullptr), ModuleInterfaceDeleter{}
moduleMain(), ModuleInterfaceDeleter{}
};
if (module && module->Initialize())