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
version and/or commit hash: f4607c4
Placeholder type specifiers will have their return type duplicated, for example:
auto hello () { return 5; }
will be documented as:
auto hello () -> auto { return 5; }
We've already addressed scenarios involving trailing return types de-duplication, so it appears that this is merely a minor oversight
The text was updated successfully, but these errors were encountered:
Ah yeah that's an easy fix, the same workaround I used for the trailing types just needs a tweak
Sorry, something went wrong.
d400d28
fixed in v0.13.0 :)
Awesome, thank! 🥳
marzer
No branches or pull requests
Environment
version and/or commit hash: f4607c4
Describe the bug
Placeholder type specifiers will have their return type duplicated, for example:
will be documented as:
Additional information
We've already addressed scenarios involving trailing return types de-duplication, so it appears that this is merely a minor oversight
The text was updated successfully, but these errors were encountered: