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
For the code
struct S { void f(); }; int main() { auto p = &S::f; }
cppinsights produces
struct S { void f(); }; int main() { void (S::*)() p = &S::f; }
while it should have produced
struct S { void f(); }; int main() { void (S::*p)() = &S::f; }
The text was updated successfully, but these errors were encountered:
Hello @languagelawyer,
thank you for your continous support and bug reports! A fix is on its way.
Andreas
Sorry, something went wrong.
e686c17
Merge pull request #282 from andreasfertig/fixIssue279
742e664
Fixed #279: Added missing support for member function pointer.
No branches or pull requests
For the code
cppinsights produces
while it should have produced
The text was updated successfully, but these errors were encountered: