GNOME Bugzilla – Bug 709845
Fortran: problem with types with name starting with is
Last modified: 2013-12-29 17:18:32 UTC
In Fortran types with a name starting with is are not shown in the documentation as the they are considered as a "type is". A small example showing the problem(used doxyfile is a standard file generated by doxygen -g): !> \file !> file documenation module_tst !> @brief documentation module tst module tst !> @brief the TYPE IsAProblem is not shown by doxygen 1.8.5 TYPE IsAProblem INTEGER :: element !< element in type isAProblem end type !> @brief the TYPE NoProblem is shown by doxygen 1.8.5 TYPE NoProblem INTEGER :: element !< element in type NoProblem end type end module
Submitted code to git, pull request 44
Thanks, I'll include the patch in the next GIT update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.6. 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 (preferrably in the form of a self-contained example).
Verified, isaproblem is now seen so no problem anymore