| 665 | } |
| 666 | |
| 667 | void removeLine(uint32_t num) |
| 668 | { |
| 669 | // std::cerr << "Removing line " << num << ", current_idx: " << current_idx << "\n"; |
| 670 | |
| 671 | walk(num); |
| 672 | |
| 673 | if (current_idx == num && it != lines.end()) |
| 674 | it = lines.erase(it); |
| 675 | } |
| 676 | }; |
| 677 | |
| 678 | /// All files with their blame info. When file is renamed, we also rename it in snapshot. |
no test coverage detected