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
Try this snippet in standard compiler, and with this compiler in compability mode:
#include <a_samp> new foo[3][2][] = { {"Bar","Bar"}, {"Boo","Boo"}, {"Bee","Bee"} }; main() { printf("%d, %s", sizeof foo, foo[0][0]); }
Expected result: All is well Actual result: error 052, multidimensional-arrays must be fully initialized
No idea why, maybe new ellipsis support changed that.
edit: Compability mode doesn't matter, it still reports this error
The text was updated successfully, but these errors were encountered:
7314b56
It compiles now but doesn't print the correct string, I'm looking into that.
Sorry, something went wrong.
2e162ea
No branches or pull requests
Try this snippet in standard compiler, and with this compiler in compability mode:
Expected result: All is well
Actual result: error 052, multidimensional-arrays must be fully initialized
No idea why, maybe new ellipsis support changed that.
edit: Compability mode doesn't matter, it still reports this error
The text was updated successfully, but these errors were encountered: