Changeset d6ae3ae in rtems-tools


Ignore:
Timestamp:
05/11/18 05:25:53 (6 years ago)
Author:
Chris Johns <chrisj@…>
Branches:
5, master
Children:
1f1a10f
Parents:
1c85380
git-author:
Chris Johns <chrisj@…> (05/11/18 05:25:53)
git-committer:
Chris Johns <chrisj@…> (06/18/18 02:26:16)
Message:

tester/covoar: ExecutableInfo? C to C++ change.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tester/covoar/ExecutableInfo.cc

    r1c85380 rd6ae3ae  
    4444    ExecutableInfo::CoverageMaps::iterator  itr;
    4545
    46     for (itr = coverageMaps.begin(); itr != coverageMaps.end(); itr++) {
    47       fprintf( stderr, "Coverage Map for %s\n", ((*itr).first).c_str() );;
    48       ((*itr).second)->dump();
     46    for (auto& cm : coverageMaps) {
     47      std::cerr << "Coverage Map for " << cm.first << std::endl;
     48      cm.second->dump();
    4949    }
    5050  }
Note: See TracChangeset for help on using the changeset viewer.