Changeset 8 for branches/with_autoconf/src/methodprocess_dependency.cc
- Timestamp:
- Jun 25, 2008, 1:08:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/with_autoconf/src/methodprocess_dependency.cc
r1 r8 34 34 */ 35 35 36 #include "assert.h"36 #include <cassert> 37 37 #include "methodprocess_dependency.h" 38 38 #include "simplify_string.h" … … 40 40 #include <iostream> 41 41 #include <fstream> 42 #ifdef HAVE_CONFIG_H 43 #include "config.h" 44 #endif 42 45 43 46 using namespace std; … … 47 50 get_name (const method_process_t *method) 48 51 { 49 ASSERT(method != NULL);52 assert(method != NULL); 50 53 const sc_module *module = method->module; 51 ASSERT(module != NULL);54 assert(module != NULL); 52 55 const char *module_name = module->name (); 53 56 const char *function_name = method->name; … … 85 88 const SignalDependency &sd = *it; 86 89 const equi_t *source_equi = sd.source; 87 ASSERT(source_equi != NULL);90 assert(source_equi != NULL); 88 91 const method_process_t *source_method = table[source_equi]; 89 92 if (source_method == NULL)
Note: See TracChangeset
for help on using the changeset viewer.