| 76 | } |
| 77 | |
| 78 | void runnable::require(bool value, const detail::source_location& location) { |
| 79 | if (!check(value, location)) |
| 80 | requirement_failed::raise(location); |
| 81 | } |
| 82 | |
| 83 | runnable& runnable::current() { |
| 84 | auto ptr = current_runnable; |
no test coverage detected