Changeset 115 for trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Timestamp:
- Apr 20, 2009, 11:29:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces.cpp
r113 r115 39 39 #endif 40 40 41 for (std::list<Interface_fifo*>::iterator it = _list_interface->begin(); 42 it!=_list_interface->end(); 43 ++it) 44 delete (*it); 41 // for (std::list<Interface_fifo*>::iterator it = _list_interface->begin(); 42 // it!=_list_interface->end(); 43 // ++it) 44 // delete (*it); 45 46 while (not _list_interface->empty()) 47 { 48 delete _list_interface->front(); 49 _list_interface->pop_front(); 50 } 45 51 46 52 delete _list_interface;
Note: See TracChangeset
for help on using the changeset viewer.