-------------------------------------------------------------------------
| 59 | |
| 60 | //------------------------------------------------------------------------- |
| 61 | const LineCoverage* FileCoverage::operator[](unsigned int line) const |
| 62 | { |
| 63 | auto it = lines_.find(line); |
| 64 | |
| 65 | if (it == lines_.end()) |
| 66 | return 0; |
| 67 | |
| 68 | return &it->second; |
| 69 | } |
| 70 | |
| 71 | //------------------------------------------------------------------------- |
| 72 | std::vector<LineCoverage> FileCoverage::GetLines() const |
nothing calls this directly
no outgoing calls
no test coverage detected