| 656 | } |
| 657 | |
| 658 | void removeLine(uint32_t num) |
| 659 | { |
| 660 | // std::cerr << "Removing line " << num << ", current_idx: " << current_idx << "\n"; |
| 661 | |
| 662 | walk(num); |
| 663 | |
| 664 | if (current_idx == num && it != lines.end()) |
| 665 | it = lines.erase(it); |
| 666 | } |
| 667 | }; |
| 668 | |
| 669 | /// All files with their blame info. When file is renamed, we also rename it in snapshot. |
no test coverage detected