diff --git a/include/fmt/core.h b/include/fmt/core.h index 4014b8de..95b5f64b 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -334,7 +334,8 @@ struct error_handler { template struct no_formatter_error : std::false_type {}; } // namespace internal -#if FMT_GCC_VERSION && FMT_GCC_VERSION < 405 +// GCC 4.6.x cannot expand `T...`. +#if FMT_GCC_VERSION && FMT_GCC_VERSION < 407 template struct is_constructible : std::false_type {}; #else template