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
The folowing input into interactive mode produces a failed assertion:
starting picoc v2.2 picoc> int a,b,c,d; picoc> a=b=c=d=0; picoc: lex.c:574: LexTokenise: Assertion `ReserveSpace >= MemUsed' failed. [1] 6395 abort (core dumped) picoc -i
However, doing the same action with two or three variables works fine e.g.
// This works fine picoc> int a,b,c; picoc> a=b=c=0;
The text was updated successfully, but these errors were encountered:
starting picoc v2.2 beta r picoc> int a,b,c,d; picoc> a=b=c=d=10; picoc>
Sorry, something went wrong.
Merge pull request zsaleeba#17 from jpoirier/develop
4930d78
fix parsing typedef outside of declaration, don't decrement loop counter
No branches or pull requests
The folowing input into interactive mode produces a failed assertion:
However, doing the same action with two or three variables works fine e.g.
The text was updated successfully, but these errors were encountered: