Dear Petr,

I looked at problem D, but was not able to reproduce it.
I used the attached source file and the default Doxyfile with the following
items set to YES:
- EXTRACT_ALL
- REFERENCED_BY_RELATION
- REFERENCES_RELATION

Can you please attach a self-contained example (source+config file in
a tar or zip) that allows me to reproduce the problem?

(Preferably as bug report at bugzilla
(https://bugzilla.gnome.org/enter_bug.cgi?product=doxygen)

Albert


On Tue, Oct 13, 2015 at 3:13 PM, Petr Parik <petr.pa...@seznam.cz> wrote:

> Hi all,
>
> It seems Doxygen 1.8.10 does not work properly on Fortran modules.
>
> A. If a module is not documented it is not listed on the "file
> reference" page (as expected) but all its functions/variables are (bug!).
>
> B. If EXTRACT_PRIVATE = NO, module private functions are not listed (as
> expected) but module private variables are (bug!).
>
> C. Implicit PRIVATE/PUBLIC/PROTECTED statements in a module work as
> expected but are not "appended" to function/variable documentation. This
> is only a nuisance.
>
> D. If a documented function (inside or outside a module) is followed by
> one or more undocumented functions, the function calls in the following
> undocumented functions are listed in "References" of the documented
> function (bug!).
>
> Could this issues be adressed in the next version? Thanks :)
>
> Best regards,
>
> Petr
>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Doxygen-users mailing list
> Doxygen-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/doxygen-users
>
!> \brief documented function
subroutine a()
  call b()
end subroutine

subroutine b()
  call c()
end subroutine

subroutine c()
end subroutine

subroutine d()
  call e()
end subroutine

subroutine e()
end subroutine
------------------------------------------------------------------------------
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to