| 1041 | /// FormatListRef formatList = makeFormatList( /*...*/ ); |
| 1042 | template<typename... Args> |
| 1043 | detail::FormatListN<sizeof...(Args)> makeFormatList(const Args&... args) |
| 1044 | { |
| 1045 | return detail::FormatListN<sizeof...(args)>(args...); |
| 1046 | } |
| 1047 | |
| 1048 | #else // C++98 version |
| 1049 |