| 74 | static thread_local Context* threadContext = NULL; |
| 75 | |
| 76 | Context* contextGet() { |
| 77 | DISTRHO_SAFE_ASSERT(threadContext != nullptr); |
| 78 | return threadContext; |
| 79 | } |
| 80 | |
| 81 | // Apple's clang incorrectly compiles this function when -O2 or higher is enabled. |
| 82 | #ifdef ARCH_MAC |
no outgoing calls
no test coverage detected