Changeset d6ae3ae in rtems-tools
- Timestamp:
- 05/11/18 05:25:53 (6 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tester/covoar/ExecutableInfo.cc
r1c85380 rd6ae3ae 44 44 ExecutableInfo::CoverageMaps::iterator itr; 45 45 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(); 49 49 } 50 50 }
Note: See TracChangeset
for help on using the changeset viewer.