Changeset 8 for branches/with_autoconf/src/module_hierarchy2dot.cc
- Timestamp:
- Jun 25, 2008, 1:08:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/with_autoconf/src/module_hierarchy2dot.cc
r1 r8 43 43 #include "sc_signal.h" 44 44 #include "entity.h" 45 #include "assert.h"45 #include <cassert> 46 46 #include "internal.h" 47 #ifdef HAVE_CONFIG_H 48 #include "config.h" 49 #endif 47 50 48 51 using namespace std; … … 88 91 const entity &in_entity = *it; 89 92 sc_object *in_obj = in_entity.object; 90 ASSERT(in_obj != NULL);93 assert(in_obj != NULL); 91 94 const sc_module *in_parent = NULL; 92 95 switch (in_entity.type) {
Note: See TracChangeset
for help on using the changeset viewer.