Changes from sources/src/methodprocess_dependency.cc at r27 to latest/src/methodprocess_dependency.cc at r1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
latest/src/methodprocess_dependency.cc
r27 r1 34 34 */ 35 35 36 #include <cassert>36 #include "assert.h" 37 37 #include "methodprocess_dependency.h" 38 38 #include "simplify_string.h" … … 40 40 #include <iostream> 41 41 #include <fstream> 42 #ifdef HAVE_CONFIG_H43 #include "config.h"44 #endif45 42 46 43 using namespace std; … … 50 47 get_name (const method_process_t *method) 51 48 { 52 assert(method != NULL);49 ASSERT(method != NULL); 53 50 const sc_module *module = method->module; 54 assert(module != NULL);51 ASSERT(module != NULL); 55 52 const char *module_name = module->name (); 56 53 const char *function_name = method->name; … … 88 85 const SignalDependency &sd = *it; 89 86 const equi_t *source_equi = sd.source; 90 assert(source_equi != NULL);87 ASSERT(source_equi != NULL); 91 88 const method_process_t *source_method = table[source_equi]; 92 89 if (source_method == NULL)
Note: See TracChangeset
for help on using the changeset viewer.