To avoid gcc error about va_list not being usable in a constexpr function
| 350 | |
| 351 | template <class...> // To avoid gcc error about va_list not being usable in a constexpr function |
| 352 | inline void __debug_printf(char const * __fmt, ...) noexcept |
| 353 | { |
| 354 | va_list __args; |
| 355 | va_start(__args, __fmt); |
| 356 | STDEXEC::__debug_vprintf(__fmt, __args); |
| 357 | va_end(__args); |
| 358 | } |
| 359 | |
| 360 | template <class _Return = void> |
| 361 | [[noreturn]] |
nothing calls this directly
no test coverage detected