| 79 | |
| 80 | |
| 81 | static void DestroyControllers(FileContext* file) |
| 82 | { |
| 83 | for (auto view : file->getAllDataViews()) |
| 84 | { |
| 85 | if (DebuggerController::ControllerExists(view)) |
| 86 | { |
| 87 | auto controller = DebuggerController::GetController(view); |
| 88 | if (controller) |
| 89 | controller->Destroy(); |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | |
| 95 | static void DestroyControllers(const std::vector<BinaryViewRef>& datas) |
no test coverage detected