Skip to content
New issue

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

template arguments dont show default value nor concept restriction #4

Closed
matcool opened this issue Jul 9, 2024 · 0 comments
Closed
Labels
bug Something isn't working

Comments

@matcool
Copy link
Member

matcool commented Jul 9, 2024

template <class T = int>
void foo();
// gets rendered as `void foo<T>()`, T = int information is lost

template <std::integral T>
class Whatever;
// rendered as `class Whatever<T>`, `std::integral` concept is lost
@matcool matcool added the bug Something isn't working label Jul 9, 2024
matcool added a commit that referenced this issue Jul 11, 2024
improves on #4, just missing classes now
matcool added a commit that referenced this issue Jul 12, 2024
@matcool matcool closed this as completed Jul 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant