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
Example Code:
iterator begin() noexcept { return __data(); } const_iterator begin() const noexcept { return __data(); } CharT *data() noexcept { return __data(); } const CharT *data() const noexcept { return __data(); } reference front() noexcept { return __data()[0]; } const_reference front() const noexcept { return __data()[0]; }
Image:
The text was updated successfully, but these errors were encountered:
qualified_type does not match when the type ends in a keyword iterator and in_band.
qualified_type
Sorry, something went wrong.
Fix matching for non type keywords in types
e426d82
Qualified type now correctly matched identifers that contain non type keywords. Fixes: #242
Successfully merging a pull request may close this issue.
Example Code:
Image:
The text was updated successfully, but these errors were encountered: