* Check whether the addr2line returned a valid position. */
| 192 | * Check whether the addr2line returned a valid position. |
| 193 | */ |
| 194 | bool valid_addr2line_return(std::string output) |
| 195 | { |
| 196 | return !output.empty() && output[0] != '?'; |
| 197 | } |
| 198 | |
| 199 | struct addr2line_result |
| 200 | { |
no test coverage detected