After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 709845 - Fortran: problem with types with name starting with is
Fortran: problem with types with name starting with is
Status: VERIFIED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.5
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2013-10-10 17:35 UTC by albert
Modified: 2013-12-29 17:18 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description albert 2013-10-10 17:35:49 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
Comment 1 albert 2013-10-10 17:43:47 UTC
Submitted code to git, pull request 44
Comment 2 Dimitri van Heesch 2013-10-11 17:40:11 UTC
Thanks, I'll include the patch in the next GIT update.
Comment 3 Dimitri van Heesch 2013-12-24 18:59:21 UTC
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).
Comment 4 albert 2013-12-29 17:18:32 UTC
Verified, isaproblem is now seen so no problem anymore