Changeset 8 for branches/with_autoconf/src/module_hierarchy.cc
- Timestamp:
- Jun 25, 2008, 1:08:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/with_autoconf/src/module_hierarchy.cc
r1 r8 36 36 #include "module_hierarchy.h" 37 37 #include "sc_module.h" 38 #include "assert.h"38 #include <cassert> 39 39 #include <map> 40 #ifdef HAVE_CONFIG_H 41 #include "config.h" 42 #endif 40 43 41 44 using namespace std; … … 71 74 return; //obj_list = &top_level_objects; 72 75 else { 73 ASSERT(parent != &obj);76 assert(parent != &obj); 74 77 const sc_object *pobj = (const sc_module *) parent; 75 78 obj_list = &(object2childs[pobj]);
Note: See TracChangeset
for help on using the changeset viewer.