| 51 | } |
| 52 | |
| 53 | unsigned current_cxx_exception_index() noexcept { |
| 54 | if (PEXCEPTION_RECORD current_cxx_exception = _pCurrentException) { |
| 55 | for (unsigned i = data.count; i > 0;) { |
| 56 | --i; |
| 57 | if (data.info[i].object == PER_PEXCEPTOBJ(current_cxx_exception)) { |
| 58 | return i; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | return data.count; |
| 63 | } |
| 64 | |
| 65 | bool is_processing_rethrow(PEXCEPTION_RECORD p) noexcept { |
| 66 | // Processing flow: |
no test coverage detected