Ignore:
Timestamp:
Feb 6, 2017, 11:35:42 AM (7 years ago)
Author:
meunier
Message:
  • Fixed memory leaks
  • Fixed indentation in some files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/src/sc_module.cc

    r52 r59  
    6767instances_list_t temp_list;   
    6868method_process_list_t method_process_list;
     69std::vector<const char *> allocated_names;
    6970module_name_stack_t module_name_stack;
    7071modules_stack_t modules_stack;
     
    7374void declare_method_process(const char * name, SC_ENTRY_FUNC func, sc_module & module) {
    7475  method = create_method_process(name, func, module);
    75   method_process_list.push_back(method); 
     76  method_process_list.push_back(method);
    7677}
    7778
Note: See TracChangeset for help on using the changeset viewer.