Add a comment.

This commit is contained in:
Victor Zverovich 2014-04-24 07:30:06 -07:00
parent 47cbcf8b3a
commit 81217a2cc0

View File

@ -65,6 +65,9 @@
#endif
#ifndef FMT_USE_VARIADIC_TEMPLATES
// Variadic templates are available in GCC since version 4.4
// (http://gcc.gnu.org/projects/cxx0x.html) and in Visual C++
// since version 2013.
# define FMT_USE_VARIADIC_TEMPLATES \
(FMT_HAS_FEATURE(cxx_variadic_templates) || \
(FMT_GCC_VERSION >= 404 && __cplusplus >= 201103) || _MSC_VER >= 1800)