| 1094 | /// Format list of arguments to std::cout, according to the given format string |
| 1095 | template<typename... Args> |
| 1096 | void printf(FormatStringCheck<sizeof...(Args)> fmt, const Args&... args) |
| 1097 | { |
| 1098 | format(std::cout, fmt, args...); |
| 1099 | } |
| 1100 | |
| 1101 | template<typename... Args> |
| 1102 | void printfln(FormatStringCheck<sizeof...(Args)> fmt, const Args&... args) |