Hi all,

I have Doxygen 1.8.10 and a Fortran project. It seems the EXTRACT_PRIVATE = NO config option only "hides" module private functions/subroutines but not module private variables. Isn't that a bug?

I'm including a minimum working test. Thanks for any comments.

Best regards,

Petr
INPUT                = test.f
OPTIMIZE_FOR_FORTRAN = YES
GENERATE_LATEX       = NO

EXTRACT_PRIVATE      = NO
C> Test file.
      MODULE TEST
      IMPLICIT NONE

      INTEGER VAR_PUB
      INTEGER VAR_PRIV

      PRIVATE VAR_PRIV,SUB_PRIV

      CONTAINS

      SUBROUTINE SUB_PUB
      END SUBROUTINE

      SUBROUTINE SUB_PRIV
      END SUBROUTINE

      END
------------------------------------------------------------------------------
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to