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 523163 - Fortran handling case insensitiveness
Fortran handling case insensitiveness
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.5.5-SVN
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2008-03-18 13:30 UTC by Alin M Elena
Modified: 2012-05-28 09:53 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Alin M Elena 2008-03-18 13:30:02 UTC
The case insensitiveness for fortran is not handled when creates links to routines in the source code.

Here is the code that reproduces.

module test
implicit none

private
public :: DeleteList
  contains
!> \brief recursive function that deallocates all the nodes starting with root
!> \details
!> \author Alin M Elena
!> \date 14th of January 2006
!> \param root type(names), pointer the starting node
 recursive subroutine DeleteList(root)
    character(len=*), parameter :: myname = 'DeleteList'
    type(names), pointer :: root
    type(names), pointer :: current

    current=>root%next
    if (associated(current)) then
      call deleteList(current)
    else
      deallocate(root)
    endif 
  end subroutine DeleteList
end module test


deleteList does not get a link pointing to to routine definition.
changing to DeleteList and the doxygen behaves as expected.

Alin
Comment 1 Daniel Franke 2010-02-25 19:23:18 UTC
Dupe of #522496 ?
Comment 2 Daniel Franke 2010-12-21 00:12:49 UTC

*** This bug has been marked as a duplicate of bug 522496 ***
Comment 3 Dimitri van Heesch 2011-07-17 13:23:21 UTC
Reopened on behalf of Albert, as this is not a duplicate after all.
Comment 4 Elliott Sales de Andrade 2011-09-16 03:53:40 UTC
I'm pretty sure this is still true in 1.7.5.1, but I can't seem to get the example to work even with the correct case. I'm not sure if it's because of the recursion. Here's one that should definitely show the problem:
------------------------
subroutine Foo(t)
  integer :: t
end subroutine Foo

subroutine Bar(t)
  integer :: t
  
  call foo(t)
end subroutine 

program test
   call Foo(1)
end program test
------------------------
Here, both test and Bar call Foo, but only test->Foo shows up in the doxygen results.
Comment 5 albert 2012-04-22 14:05:10 UTC
I have split off the example of Elliott Sales de Andrade into bug 674563.
Comment 6 albert 2012-05-28 09:50:02 UTC
With version 1.8.1 this bug is fixed. In version a number of problems regarding links have been fixed a.o. through bug 674563.
Comment 7 albert 2012-05-28 09:51:34 UTC
With version 1.8.1 this bug is fixed. In version a number of problems regarding links have been fixed a.o. through bug 674563.