GNOME Bugzilla – Bug 676981
Fortran: Wrong type of argument in case of out of place !< comment
Last modified: 2012-07-22 11:12:38 UTC
In case of an out of place comment of type !< and the fact that the name van an argument is inside the documentation of this out of place comment, the argument takes the type of the variable to which the out of place comment belongs. Example: ======== SUBROUTINE A(ff) double precision :: ff integer :: q !< ff END SUBROUTINE results in the detailed description section in: subroutine a(integer ff) instead of subroutine a(double precision ff)
Created attachment 215138 [details] [review] Patch: Ignore out of place comment THis patch sees to it that the out of place comment !< is ignored and the arguments have their correct type.
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.1.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