-
Notifications
You must be signed in to change notification settings - Fork 184
File /stdlib/example/linalg/example_sparse_from_ijv.f90 #918
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
Comments
This looks like a style typo, cc @jalvesz? |
The current line is print '(3I4,x,3f8.1)', ELL%index(i,:) , ELL%data(i,:) So I guess the comment is about the white space formatter |
Thanks for reporting this @tof92130. |
I think that the whitespace specifier must have a numeral in front to be standard.
Compiled with
|
Motivation
/stdlib/example/linalg/example_sparse_from_ijv.f90
line 38 to compile with gfortran-14.2.0:
print '(3I4,x,3f8.1)', ELL%index(i,:) , ELL%data(I,:)
sourd be:
print '(3I4,1x,3f8.1)', ELL%index(i,:) , ELL%data(i,:)
Prior Art
No response
Additional Information
No response
The text was updated successfully, but these errors were encountered: