MCPcopy Create free account
hub / github.com/TUC-ProAut/libRSF / PrintVariadic

Function PrintVariadic

include/Messages.h:58–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57 template<typename T, typename... MoreStrings>
58 void PrintVariadic(const T Begin, const MoreStrings... Rest)
59 {
60 Print(Begin);
61 PrintVariadic(Rest...);
62 }
63
64 template<typename... MoreStrings>
65 void PrintError (const std::string &File,const std::string &Function, const int Line, const MoreStrings... Messages)

Callers 3

PrintErrorFunction · 0.70
PrintWarningFunction · 0.70
PrintLoggingFunction · 0.70

Calls 1

PrintFunction · 0.85

Tested by

no test coverage detected