| 86 | } |
| 87 | |
| 88 | void TryDebugBreak() |
| 89 | { |
| 90 | #if defined(_DEBUG) |
| 91 | if (IsDebuggerPresent() && gCoreLibPlatformInterface.EnableDebugBreak) { |
| 92 | DebugBreak(); |
| 93 | } |
| 94 | #endif |
| 95 | } |
| 96 | |
| 97 | [[noreturn]] |
| 98 | void Fail(char const * reason) |
no outgoing calls
no test coverage detected