You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the line : character*(*) char2
get transformed into character(len=2) :: char2
when it shoud be character(len=*) :: char2
this is because the subroutine check_character search for the first digit when lstar is true
The text was updated successfully, but these errors were encountered:
in check_character I think that just inverting the step works
so check before for *(*) and if nothing is found just take the first digit of the line as the length
the line :
character*(*) char2
get transformed into
character(len=2) :: char2
when it shoud be
character(len=*) :: char2
this is because the subroutine check_character search for the first digit when lstar is true
The text was updated successfully, but these errors were encountered: