-------------------------------------------------------------------------
| 34 | |
| 35 | //------------------------------------------------------------------------- |
| 36 | ExceptionHandler::ExceptionHandler() |
| 37 | { |
| 38 | breakPointExceptionCode_.emplace(EXCEPTION_BREAKPOINT, std::vector<HANDLE>{}); |
| 39 | breakPointExceptionCode_.emplace(ExceptionEmulationX86ErrorCode, std::vector<HANDLE>{}); |
| 40 | InitExceptionCode(); |
| 41 | } |
| 42 | |
| 43 | //------------------------------------------------------------------------- |
| 44 | void ExceptionHandler::InitExceptionCode() |
nothing calls this directly
no outgoing calls
no test coverage detected