| 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) |
no test coverage detected