| 5 | // clang-foramt on |
| 6 | |
| 7 | BABYLON_NAMESPACE_BEGIN |
| 8 | |
| 9 | //////////////////////////////////////////////////////////////////////////////// |
| 10 | // BasicExecutor begin |
| 11 | int BasicExecutor::invoke(MoveOnlyFunction<void(void)>&&) noexcept { |
| 12 | return -1; |
| 13 | } |
| 14 | |
| 15 | BasicExecutor*& BasicExecutor::current() noexcept { |
| 16 | static thread_local BasicExecutor* executor; |
nothing calls this directly
no outgoing calls
no test coverage detected