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