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
unexposed_t
libclang_parser
Explanation of the error.
Input:
template <typename T> class Test { public: Test(const Test&) = delete; };
The parameter's cpp_reference_type.referee()->kind() is giving unexposed_t.
cpp_reference_type.referee()->kind()
Adding explicit template parameters solves the issue.
template <typename T> class Test { public: Test(const Test<T>&) = delete; };
Possible bug? Or limitation?
The text was updated successfully, but these errors were encountered:
This is a libclang limitation, unfortunately. I think it's related to #4.
Sorry, something went wrong.
No branches or pull requests
libclang_parser
Explanation of the error.
Input:
The parameter's
cpp_reference_type.referee()->kind()
is givingunexposed_t
.Adding explicit template parameters solves the issue.
Possible bug? Or limitation?
The text was updated successfully, but these errors were encountered: