| 14 | DBG_ASSERT_HANDLER dbg_assert_handler; |
| 15 | |
| 16 | bool dbg_assert_has_failed() |
| 17 | { |
| 18 | return dbg_assert_failing.load(std::memory_order_acquire); |
| 19 | } |
| 20 | |
| 21 | void dbg_assert_imp(const char *filename, int line, const char *fmt, ...) |
| 22 | { |
no outgoing calls
no test coverage detected