GNOME Bugzilla – Bug 682740
Fortran: In initialization statement the "=" (equal sign) is missing
Last modified: 2013-01-05 12:58:02 UTC
In the Fortran documentation the "=" (equal sign)is missing in e.g. the save statement and the parameter statement. Example: module tst integer, parameter :: par_f = 92 !< docu par_f integer, save :: par_s = 93 !< docu par_s end module In the documentation we see: integer, parameter par_f 92 integer, save par_s 93 and integer, parameter tst::par_f 92 integer, save tst::par_s 93 instead of: integer, parameter par_f = 92 integer, save par_s = 93 and integer, parameter tst::par_f = 92 integer, save tst::par_s = 93
Created attachment 222490 [details] [review] PATCH: retain "=" in Fortran output With this patch the "=" (equal sign) is retained in the output of the initialization.
Thanks, I'll include the patch in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.3. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.
Patch is in and works