Changes in src/Helpers/MemDebug.cpp [ad7270:bcf653]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Helpers/MemDebug.cpp
rad7270 rbcf653 380 380 // mark the block as not in the list (will be changed by addEntry) 381 381 entry->isIgnored = true; 382 if (line != 0) { // indicator that we do not know the source 383 Memory::addEntry(entry); 384 } 382 Memory::addEntry(entry); 385 383 386 384 // get the checksum... … … 426 424 // mark the block as not in the list (will be changed by addEntry) 427 425 entry->isIgnored = true; 428 if (line != 0) { // indicator that we do not know the source 429 Memory::addEntry(entry); 430 } 426 Memory::addEntry(entry); 431 427 432 428 // get the checksum... … … 509 505 void operator delete(void *ptr) throw() { 510 506 if(!ptr){ 511 //cerr << "Warning: Deleting NULL pointer" << endl;507 cerr << "Warning: Deleting NULL pointer" << endl; 512 508 return; 513 509 }
Note:
See TracChangeset
for help on using the changeset viewer.