| 4534 | } |
| 4535 | |
| 4536 | void WinDebugger::OutputMessage(const StringImpl& msg) |
| 4537 | { |
| 4538 | if (this == NULL) |
| 4539 | return; |
| 4540 | AutoCrit autoCrit(mDebugManager->mCritSect); |
| 4541 | mDebugManager->mOutMessages.push_back("msg " + msg); |
| 4542 | } |
| 4543 | |
| 4544 | void WinDebugger::OutputRawMessage(const StringImpl& msg) |
| 4545 | { |
no test coverage detected