| 189 | } |
| 190 | |
| 191 | bool readNextLineNotEmpty(std::istream& is, std::string& line) |
| 192 | { |
| 193 | while (is.good()) |
| 194 | { |
| 195 | std::getline(is, line); |
| 196 | trim(line); |
| 197 | if(!line.empty()) |
| 198 | return true; |
| 199 | } |
| 200 | return false; |
| 201 | } |
| 202 | |
| 203 | std::string toString(void* p) |
| 204 | { |
no test coverage detected