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
For this declaration:
character(len=1, kind=kind('a')), dimension(63) :: fw_errstr__
Gfortran 4.2.3 on Mac OS X gives an error like this:
test_char_kind.f:2.37: character(len=1, kind=kind('a')), dimension(63) :: fw_errstr__ 1 Error: Kind 69068 is not a CHARACTER kind at (1)
Which seems to be this bug:
http://www.mail-archive.com/[email protected]/msg201855.html
The workaround is to emit this code for the character declaration:
character(1), dimension(63) :: fw_errstr__
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For this declaration:
Gfortran 4.2.3 on Mac OS X gives an error like this:
Which seems to be this bug:
http://www.mail-archive.com/[email protected]/msg201855.html
The workaround is to emit this code for the character declaration:
The text was updated successfully, but these errors were encountered: