GNOME Bugzilla – Bug 694027
Fortran: derive intent from documentation in case no intent is specified
Last modified: 2013-05-21 15:50:13 UTC
In case the documentation of an argument directly in front or after it and the user has not specified the intent attribute but placed the [i], [out] or [in,out] at the begin of the documentation this is not seen as intent description. Example: subroutine a(x) integer :: x !< [in] description of x end subroutine
Created attachment 236451 [details] [review] PATCH get intent from documentation Check whether or not the intent value is given at the begin of the documentation. When this is the case compare this intent with the specified intent. In case no intent is given use the intent from the documentation. In case of a discrepancy between the documentation and the documentation issue a warning.
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.4. 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 expected