| 106 | } |
| 107 | |
| 108 | void FileContentLayout::UpdateLineLimits() { |
| 109 | this->cur_read_lines_max_length = 0; |
| 110 | for(const auto &line: this->read_lines) { |
| 111 | this->cur_read_lines_max_length = std::max(this->cur_read_lines_max_length, line.length()); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void FileContentLayout::UpdateLines() { |
| 116 | std::string new_cnt; |
no outgoing calls
no test coverage detected