diff --git a/include/utils/App/App.h b/include/utils/App/App.h index d540f22..d97efdb 100644 --- a/include/utils/App/App.h +++ b/include/utils/App/App.h @@ -119,9 +119,11 @@ namespace Archimedes { bool skip = false; for(auto it : m->deps) { + //std::cout << "Module " << m->getName() << " has dependency " << it.first << std::endl; for(auto s : runOrder) { if(s == it.first) { skip = true; + m->moduleInstances[s] = modules[s]; } }