Changes from sources/src/module_hierarchy2dot.cc at r27 to latest/src/module_hierarchy2dot.cc at r1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
latest/src/module_hierarchy2dot.cc
r27 r1 43 43 #include "sc_signal.h" 44 44 #include "entity.h" 45 #include <cassert>45 #include "assert.h" 46 46 #include "internal.h" 47 #ifdef HAVE_CONFIG_H48 #include "config.h"49 #endif50 47 51 48 using namespace std; … … 91 88 const entity &in_entity = *it; 92 89 sc_object *in_obj = in_entity.object; 93 assert(in_obj != NULL);90 ASSERT(in_obj != NULL); 94 91 const sc_module *in_parent = NULL; 95 92 switch (in_entity.type) {
Note: See TracChangeset
for help on using the changeset viewer.