| 27 | thrown_info* info = nullptr; |
| 28 | |
| 29 | ~exception_data() noexcept { |
| 30 | HANDLE hHeap = GetProcessHeap(); |
| 31 | for (unsigned i = 0; i < count; ++i) { |
| 32 | HeapFree(hHeap, 0, info[i].dump); |
| 33 | } |
| 34 | HeapFree(hHeap, 0, info); |
| 35 | } |
| 36 | }; |
| 37 | |
| 38 | thread_local exception_data data; |
nothing calls this directly
no outgoing calls
no test coverage detected