maybe this teardown fixes the leak

This commit is contained in:
2022-07-25 22:22:08 +02:00
parent c12669fe50
commit db33f9cc7e
4 changed files with 9 additions and 2 deletions

View File

@ -29,3 +29,9 @@ int customSetup() {
objMan->initialize();
return 0;
}
int customTeardown() {
ObjectManager* objMan = ObjectManager::instance();
delete objMan;
return 0;
}