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 is not a review deviation of the accepted p0670r4 document but was observed during the review:
In [reflect.synopsis], the declaration is presented as:
template <class T> concept Namespace; // refines Named and Scope
but the defining sub-clause [reflect.concepts.namespace] says:
template <class T> concept Namespace = Scope<T> && see below ;
If the synopsis comment was correct, I would expect that [reflect.concepts.namespace] should be presented as
template <class T> concept Namespace = Named<T> && Scope<T> && see below ;
but if [reflect.concepts.namespace] is correct, I would expect that [reflect.synopsis] is corrected to say
template <class T> concept Namespace; // refines Scope
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is not a review deviation of the accepted p0670r4 document but was observed during the review:
In [reflect.synopsis], the declaration is presented as:
but the defining sub-clause [reflect.concepts.namespace] says:
If the synopsis comment was correct, I would expect that [reflect.concepts.namespace] should be presented as
but if [reflect.concepts.namespace] is correct, I would expect that [reflect.synopsis] is corrected to say
The text was updated successfully, but these errors were encountered: