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
This as a side effect will make it possible to remove the result<void> specialization, and will obviate the need for a result<T&> specialization.
result<void>
result<T&>
void will need to be replaced in variant_base with variant2::void_, and T& - with either std::reference_wrapper<T> or variant2::detail::refwrap<T>.
void
variant_base
variant2::void_
T&
std::reference_wrapper<T>
variant2::detail::refwrap<T>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This as a side effect will make it possible to remove the
result<void>
specialization, and will obviate the need for aresult<T&>
specialization.void
will need to be replaced invariant_base
withvariant2::void_
, andT&
- with eitherstd::reference_wrapper<T>
orvariant2::detail::refwrap<T>
.The text was updated successfully, but these errors were encountered: