Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Helpers/MemDebug.cpp

    rad7270 rbcf653  
    380380  // mark the block as not in the list (will be changed by addEntry)
    381381  entry->isIgnored = true;
    382   if (line != 0)  { // indicator that we do not know the source
    383     Memory::addEntry(entry);
    384   }
     382  Memory::addEntry(entry);
    385383
    386384  // get the checksum...
     
    426424  // mark the block as not in the list (will be changed by addEntry)
    427425  entry->isIgnored = true;
    428   if (line != 0)  { // indicator that we do not know the source
    429     Memory::addEntry(entry);
    430   }
     426  Memory::addEntry(entry);
    431427
    432428  // get the checksum...
     
    509505void operator delete(void *ptr) throw() {
    510506  if(!ptr){
    511     //cerr << "Warning: Deleting NULL pointer" << endl;
     507    cerr << "Warning: Deleting NULL pointer" << endl;
    512508    return;
    513509  }
Note: See TracChangeset for help on using the changeset viewer.