MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / FPrintf

Function FPrintf

DPrint.h:56–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54//-----------------------------------------------------------------------------
55
56inline void FPrintf(const char* fmt, const auto&... args)
57{
58 if constexpr(0 < (sizeof...(args))) {
59 fprintf(stderr, fmt, Normalize(args)...);
60 } else {
61 fprintf(stderr, "%s", fmt);
62 }
63}
64//-----------------------------------------------------------------------------
65
66} // namespace details

Callers 2

DPrintFunction · 0.85
ErrorFunction · 0.85

Calls 1

NormalizeFunction · 0.70

Tested by

no test coverage detected