| 27 | |
| 28 | |
| 29 | struct pc_data { |
| 30 | std::string* function; |
| 31 | std::string* filename; |
| 32 | std::size_t line; |
| 33 | }; |
| 34 | |
| 35 | inline void libbacktrace_syminfo_callback(void *data, uintptr_t /*pc*/, const char *symname, uintptr_t /*symval*/, uintptr_t /*symsize*/) { |
| 36 | pc_data& d = *static_cast<pc_data*>(data); |
nothing calls this directly
no outgoing calls
no test coverage detected