| 926 | /// FormatListRef formatList = makeFormatList( /*...*/ ); |
| 927 | template<typename... Args> |
| 928 | detail::FormatListN<sizeof...(Args)> makeFormatList(const Args&... args) |
| 929 | { |
| 930 | return detail::FormatListN<sizeof...(args)>(args...); |
| 931 | } |
| 932 | |
| 933 | #else // C++98 version |
| 934 |