| 55 | } |
| 56 | |
| 57 | void WithPrintf() |
| 58 | { |
| 59 | for(const auto& index : GetIndices()) { |
| 60 | printf("%-10s %8.2lf %6.2lf %4.2lf%%\n", |
| 61 | index.name().c_str(), |
| 62 | index.points(), |
| 63 | index.pointsDiff(), |
| 64 | index.pointsPercent()); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | void WithIostreamAdvanced() |
| 69 | { |
no test coverage detected