| 104 | } |
| 105 | |
| 106 | void FileReader::SafeAddLine(const std::string& line) |
| 107 | { |
| 108 | try |
| 109 | { |
| 110 | AddLine(line); |
| 111 | } |
| 112 | catch (std::exception& e) |
| 113 | { |
| 114 | Add(stringbuilder() << "Error parsing line: " << e.what()); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | void FileReader::AddLine(const std::string& line) |
| 119 | { |
nothing calls this directly
no outgoing calls
no test coverage detected