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
We are currently guarding the deduction guides by standard year but we should just use the feature flag
Question: doesn't this fail for compilers with partial C++17 support and `-std=c++1z`?
Suggestion: test for the feature instead:
#ifdef __cpp_deduction_guides template <class _T1, class _T2> _CCCL_HOST_DEVICE pair(_T1, _T2) -> pair<_T1, _T2>; #endif // __cpp_deduction_guides
Originally posted by @bernhardmgruber in #1643 (comment)
The text was updated successfully, but these errors were encountered:
bernhardmgruber
No branches or pull requests
We are currently guarding the deduction guides by standard year but we should just use the feature flag
Suggestion: test for the feature instead:
Originally posted by @bernhardmgruber in #1643 (comment)
The text was updated successfully, but these errors were encountered: