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
when trying to use std::derived_from concept, getting this error.
std::derived_from
error: no template named 'derived_from' in namespace 'std' template <std::derived_from<smth> T>
No response
r25
Linux
Ubuntu 20.04
arm64-v8a
The text was updated successfully, but these errors were encountered:
As a workaround, added this code snippet to use it for now
template <class Derived, class Base> concept derived_from = std::is_base_of_v<Base, Derived> && std::is_convertible_v<const volatile Derived*, const volatile Base*>;
this works fine
Sorry, something went wrong.
Any reason to believe this isn't a duplicate of the pinned issue #1530?
Closing for lack of feedback. Probably a dup.
Sure, thanks
No branches or pull requests
Description
when trying to use
std::derived_from
concept, getting this error.Upstream bug
No response
Commit to cherry-pick
No response
Affected versions
r25
Canary version
No response
Host OS
Linux
Host OS version
Ubuntu 20.04
Affected ABIs
arm64-v8a
The text was updated successfully, but these errors were encountered: