GNOME Bugzilla – Bug 680398
Fortran: comma at begin of argument list description in case of implicit type
Last modified: 2012-08-12 12:28:48 UTC
In case an argument of a Fortran routine has no type (e.g. it is implicitly typed) but has an other attribute then the first character in the documentation is a ',' Example program: ================ Subroutine test(a, b, c) external a dimension(5) b dimension(15) c logical c end subroutine Example output: =============== subroutine test (, external a, , dimension(5) b, logical, dimension(15) c ) Correct output: =============== subroutine test (external a, dimension(5) b, logical, dimension(15) c )
Created attachment 219412 [details] [review] PATCH: remove unwanted comma in argument list This patch removes an unwanted comma at the beginning of the argument description
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.2. 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.
Works as described