| 873 | /// FormatListRef formatList = makeFormatList( /*...*/ ); |
| 874 | template <typename... Args> |
| 875 | detail::FormatListN<sizeof...(Args)> makeFormatList(const Args &...args) { |
| 876 | return detail::FormatListN<sizeof...(args)>(args...); |
| 877 | } // NOLINT |
| 878 | |
| 879 | /// Format list of arguments to the stream according to the given format string. |
| 880 | /// |