From 81217a2cc04dd0bf430b94508384f4b032202d67 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 24 Apr 2014 07:30:06 -0700 Subject: [PATCH] Add a comment. --- format.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/format.h b/format.h index cd5cf67d..8e428567 100644 --- a/format.h +++ b/format.h @@ -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)