-
Notifications
You must be signed in to change notification settings - Fork 52
Intel Fortran (ifort) errors because the boolean type doesn't match the prototype #2531
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -248,7 +248,7 @@ Subroutine DC9INI(ndata,xdata,fdata,dfdata,break,c) | |
| Do j = 1,ndata | ||
| idx(j) = j | ||
| Enddo | ||
| Call DSVRGP(ndata,xdata,break,1,idx) | ||
| Call DSVRGP(ndata,xdata,break,.true.,idx) | ||
|
||
| Do j = 1,ndata | ||
| c(1,idx(j)) = fdata(j) | ||
| c(2,idx(j)) = dfdata(j) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I liked this code better before
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
then should I change the prototype that doesn't match?