| 17 | map<void *, size_t> objMap; |
| 18 | |
| 19 | struct backtrace_stack { |
| 20 | void **current; |
| 21 | void **end; |
| 22 | }; |
| 23 | |
| 24 | static _Unwind_Reason_Code unwind_callback(struct _Unwind_Context *context, void *data) { |
| 25 | auto *state = (struct backtrace_stack *) (data); |
nothing calls this directly
no outgoing calls
no test coverage detected