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

Function DPrint

DPrint.h:71–76  ·  view source on GitHub ↗

\brief Debug print which is disabled in release-mode. It takes a variable number of parameters which are normalized if they are a \ref std::string or a \ref StringRef.

Source from the content-addressed store, hash-verified

69///
70/// It takes a variable number of parameters which are normalized if they are a \ref std::string or a \ref StringRef.
71inline void DPrint([[maybe_unused]] const char* fmt, [[maybe_unused]] const auto&... args)
72{
73#ifdef INSIGHTS_DEBUG
74 details::FPrintf(fmt, args...);
75#endif /* INSIGHTS_DEBUG */
76}
77//-----------------------------------------------------------------------------
78
79/// \brief Log an error.

Callers 2

InsertArgMethod · 0.85
InsertArgMethod · 0.85

Calls 1

FPrintfFunction · 0.85

Tested by

no test coverage detected