| 757 | |
| 758 | |
| 759 | std::string DebuggerController::GetDebugStopReasonString(DebugStopReason reason) |
| 760 | { |
| 761 | char* str = BNDebuggerGetStopReasonString(reason); |
| 762 | std::string result = std::string(str); |
| 763 | BNDebuggerFreeString(str); |
| 764 | return result; |
| 765 | } |
| 766 | |
| 767 | |
| 768 | DebugStopReason DebuggerController::StopReason() |
no test coverage detected