| 844 | class Unwinder { |
| 845 | public: |
| 846 | size_t operator()(F& f, size_t depth) |
| 847 | { |
| 848 | _f = &f; |
| 849 | _index = -1; |
| 850 | _depth = depth; |
| 851 | _Unwind_Backtrace(&this->backtrace_trampoline, this); |
| 852 | return static_cast<size_t>(_index); |
| 853 | } |
| 854 | |
| 855 | private: |
| 856 | F* _f; |
nothing calls this directly
no outgoing calls
no test coverage detected