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
Clang 16 support for C++ Insights is missing at the moment due to the following reasons:
struct Test { using size_type = int; size_type size() { return 5; } }; auto X() { Test s{}; return s.size(); } int main() { X(); }
The return type of X is Test::size_type in Clang 15 and size_type in Clang 16.
X
Test::size_type
size_type
I got 1 and 2 covered by running my own build, and the API changes were also fixable, but I haven't had time to look into 3.
Andreas
The text was updated successfully, but these errors were encountered:
Fixed by #569.
Sorry, something went wrong.
No branches or pull requests
Clang 16 support for C++ Insights is missing at the moment due to the following reasons:
The return type of
X
isTest::size_type
in Clang 15 andsize_type
in Clang 16.I got 1 and 2 covered by running my own build, and the API changes were also fixable, but I haven't had time to look into 3.
Andreas
The text was updated successfully, but these errors were encountered: