| 78 | namespace SURELOG { |
| 79 | |
| 80 | int32_t FunctorCompileModule::operator()() const { |
| 81 | CompileModule* instance = new CompileModule( |
| 82 | m_compileDesign, m_module, m_design, m_symbols, m_errors, m_instance); |
| 83 | instance->compile(); |
| 84 | delete instance; |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | bool CompileModule::compile() { |
| 89 | const FileContent* const fC = m_module->m_fileContents[0]; |