We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code fragment
#if FMT_GCC_VERSION && FMT_GCC_VERSION < 405 template <typename... T> struct is_constructible : std::false_type {}; #else template <typename... T> struct is_constructible : std::is_constructible<T...> {}; #endif
causes this error with gcc 4.6.3 on my Ubuntu 12.04 machine
/fmt/core.h:341:53: sorry, unimplemented: cannot expand 'T ...' into a fixed-length argument list
Rising the version check to 407 solves this issue for me, but i didn't test extensive if this causes any side effects.
The text was updated successfully, but these errors were encountered:
Workaround unimplemented T... on gcc 4.6.x (#1008)
dad1eec
Fixed in dad1eec. Thanks for reporting!
Sorry, something went wrong.
No branches or pull requests
The following code fragment
#if FMT_GCC_VERSION && FMT_GCC_VERSION < 405 template <typename... T> struct is_constructible : std::false_type {}; #else template <typename... T> struct is_constructible : std::is_constructible<T...> {}; #endif
causes this error with gcc 4.6.3 on my Ubuntu 12.04 machine
/fmt/core.h:341:53: sorry, unimplemented: cannot expand 'T ...' into a fixed-length argument list
Rising the version check to 407 solves this issue for me, but i didn't test extensive if this causes any side effects.
The text was updated successfully, but these errors were encountered: