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
I get the following message when I try to compile the current master:
ADOL-C/src/uni5_for.c:3298:28: error: 'j' undeclared (first use in this function) 3298 | for (j=0;j<i;j++) ... snip ...
These errors do not occur if one goes back to the commit just before ac15412
I was able to fix these these errors with the following sed command in the top source directory for the project:
sed -i ADOL-C/src/uni5_for.c -e 's|for (\([ij]\)=|for(int \1=|'
The text was updated successfully, but these errors were encountered:
Thanks for the hint, this is fixed now
Sorry, something went wrong.
No branches or pull requests
I get the following message when I try to compile the current master:
These errors do not occur if one goes back to the commit just before
ac15412
I was able to fix these these errors with the following sed command in the top source directory for the project:
The text was updated successfully, but these errors were encountered: