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
template <size_t bits> class t { explicit t(std::span<const uint8_t> f) pre(f.size() == bits/8); }; template <> t<128>::t(std::span<const uint8_t> f) {}
Does not want to reduce much further than this. It turns out that the explicit instantiation is required for this to trigger, but I have no idea why.
The text was updated successfully, but these errors were encountered:
I think that's an explicit specialization, rather than instantiation.
The explicit instantiation "works", but also this test case shook out like 3 more bugs:
https://godbolt.org/z/dEf75dG9d
Sorry, something went wrong.
No branches or pull requests
Does not want to reduce much further than this. It turns out that the explicit instantiation is required for this to trigger, but I have no idea why.
The text was updated successfully, but these errors were encountered: