MCPcopy Create free account
hub / github.com/NVIDIA/stdexec / __debug_printf

Function __debug_printf

include/stdexec/__detail/__utility.hpp:352–358  ·  view source on GitHub ↗

To avoid gcc error about va_list not being usable in a constexpr function

Source from the content-addressed store, hash-verified

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]]

Callers

nothing calls this directly

Calls 1

__debug_vprintfFunction · 0.85

Tested by

no test coverage detected