forked from fmtlib/fmt
Workaround unimplemented T... on gcc 4.6.x (#1008)
This commit is contained in:
@ -334,7 +334,8 @@ struct error_handler {
|
|||||||
template <typename T> struct no_formatter_error : std::false_type {};
|
template <typename T> struct no_formatter_error : std::false_type {};
|
||||||
} // namespace internal
|
} // 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 <typename... T> struct is_constructible : std::false_type {};
|
template <typename... T> struct is_constructible : std::false_type {};
|
||||||
#else
|
#else
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
|
Reference in New Issue
Block a user