Opened 13 years ago
#1 new defect
Hollerith strings aren't handled correctly
Reported by: | rtoy | Owned by: | somebody |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | f2cl | Version: | |
Keywords: | Cc: |
Description
Hollerith strings aren't parsed correctly by f2cl.
If you don't know what they are, then this isn't a problem. If you do, then you should convert the Hollerith string into a standard Fortran string. So
character*5 s s = 4H1234
should be converted by hand to
character*5 s s = '1234'
Note: See
TracTickets for help on using
tickets.