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
Would it be possible to get irony to display a signature for template parameters?
For instance if class Foo inherits from class Bar which takes template parameters -
template<typename A, typename B, typename C> class Bar {}; class Foo : public Bar<...> {};
Could Irony display the signature <typename A, typename B, typename C> as completion signature when cursor is over the ellipsis?
<typename A, typename B, typename C>
The text was updated successfully, but these errors were encountered:
I'm not sure if Clang provides this information easily, will have to check.
Sorry, something went wrong.
No branches or pull requests
Would it be possible to get irony to display a signature for template parameters?
For instance if class Foo inherits from class Bar which takes template parameters -
Could Irony display the signature
<typename A, typename B, typename C>
as completion signature when cursor is over the ellipsis?The text was updated successfully, but these errors were encountered: