- Timestamp:
- 02/11/10 11:18:34 (7 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/rphp/compiler/analysis/passes/CheckMemoryManagement.cpp
r1030 r1034 30 30 31 31 void CheckMemoryManagement::visit_pre_stmt(stmt* s) { 32 if(s && s-> refCount_!= 1) {33 std::cerr << "The following AST Node has a refCount of " << s-> refCount_<< std::endl;32 if(s && s->getRefCount() != 1) { 33 std::cerr << "The following AST Node has a refCount of " << s->getRefCount() << std::endl; 34 34 DumpAST dump(module_); 35 35 dump.pre_run();
