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
int main() { auto p = new int[2][3]; }
cppinsight swaps the dimensions
int main() { int (*)[3] p = new int [3][2]; }
The text was updated successfully, but these errors were encountered:
Fixed #106: The auto deduction of the new expression.
3e5810f
Hi @languagelawyer,
thanks for the finding. I need to add tests which check the result. Fix is on its way.
Sorry, something went wrong.
5971ae8
No branches or pull requests
For the code
cppinsight swaps the dimensions
The text was updated successfully, but these errors were encountered: